diff --git "a/all/addsub.json" "b/all/addsub.json" new file mode 100644--- /dev/null +++ "b/all/addsub.json" @@ -0,0 +1,11998 @@ +{ + "Source": "https://aclanthology.org/N16-1136.pdf", + "Categories": [ + { + "Math complexity": 1, + "Language complexity": 7, + "Domain knowledge complexity": 0 + } + ], + "Instances": [ + { + "Input": "Dan has 64 violet marbles. He gave Mary 14 of the marbles . How many violet marbles does he now have ? ", + "Output Program": [ + "answer = 64 - 14\nprint(answer)" + ], + "Output Answer": [ + "50" + ], + "split": "train" + }, + { + "Input": "A bathing suit manufacturer has a supply of 14797 bathing suits for men . In addition , it has 4969 bathing suits for women . How many bathing suits are available overall ? ", + "Output Program": [ + "answer = 14797.0 + 4969.0\nprint(answer)" + ], + "Output Answer": [ + "19766.0" + ], + "split": "train" + }, + { + "Input": "Jason grew 37 watermelons and 30 pumpkins . Sandy grew 11 watermelons . How many watermelons did they grow in total ? ", + "Output Program": [ + "answer = 37 + 11\nprint(answer)" + ], + "Output Answer": [ + "48" + ], + "split": "train" + }, + { + "Input": "Irwin 's family went on a camping trip in the mountains . On the first day , they hiked from their car to the campsite . First , they hiked 0.2 mile from the car to a stream , and 0.4 mile from the stream to a meadow . Then they hiked 0.1 mile from the meadow to the campsite . How many miles did Irwin 's family hike in all ? ", + "Output Program": [ + "answer = 0.2 + 0.4 + 0.1\nprint(answer)" + ], + "Output Answer": [ + "0.7" + ], + "split": "train" + }, + { + "Input": "Mary picked 122 oranges and Jason picked 105 oranges from the orange tree . How many oranges were picked in total ? ", + "Output Program": [ + "answer = 122 + 105\nprint(answer)" + ], + "Output Answer": [ + "227" + ], + "split": "train" + }, + { + "Input": "Fred has 5 baseball cards . Melanie bought 3 of Fred 's baseball cards . How many baseball cards does Fred have now ? ", + "Output Program": [ + "answer = 5 - 3\nprint(answer)" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "Sam has 110 books . Joan has 102 books . How many books do they have together ? ", + "Output Program": [ + "answer = 110 + 102\nprint(answer)" + ], + "Output Answer": [ + "212" + ], + "split": "train" + }, + { + "Input": "There are 112 short trees and 119 tall trees currently in the park . Park workers will plant 105 short trees today . How many short trees will the park have when the workers are finished ? ", + "Output Program": [ + "answer = 112 + 105\nprint(answer)" + ], + "Output Answer": [ + "217" + ], + "split": "train" + }, + { + "Input": "Paco 's Countertop Company purchased pieces of marble from a quarry . The weights of the pieces they purchased were 0.3333333333333333 ton , 0.3333333333333333 ton , and 0.08333333333333333 ton . How many tons of marble did Paco 's Countertop Company purchase in all ? ", + "Output Program": [ + "answer = 0.3333333333333333 + 0.3333333333333333 + 0.08333333333333333\nprint(answer)" + ], + "Output Answer": [ + "0.75" + ], + "split": "train" + }, + { + "Input": "Sara had 21 quarters in her bank . Her dad gave her 49 quarters . How many quarters does she have now ? ", + "Output Program": [ + "answer = 21 + 49\nprint(answer)" + ], + "Output Answer": [ + "70" + ], + "split": "train" + }, + { + "Input": "Fred has 40 baseball cards . Keith bought 22 of Fred 's baseball cards . How many baseball cards does Fred have now ? ", + "Output Program": [ + "answer = 40 - 22\nprint(answer)" + ], + "Output Answer": [ + "18" + ], + "split": "train" + }, + { + "Input": "Sara has 3 green and 5 red marbles . Tom has 4 green marbles . How many green marbles do they have in total ? ", + "Output Program": [ + "answer = 3 + 4\nprint(answer)" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": "Jenny ran 0.6 mile and walked 0.4 mile . How much farther did Jenny run than walk ? ", + "Output Program": [ + "answer = 0.6 - 0.4\nprint(answer)" + ], + "Output Answer": [ + "0.2" + ], + "split": "train" + }, + { + "Input": "There are 2 maple trees and 5 popular trees currently in the park . Park workers will plant 9 maple trees today . How many maple trees will the park have when the workers are finished ? ", + "Output Program": [ + "answer = 2 + 9\nprint(answer)" + ], + "Output Answer": [ + "11" + ], + "split": "train" + }, + { + "Input": "Sally has 9 orange balloons and 4 blue balloons . She lost 2 of the orange balloons . How many orange balloons does Sally have now ? ", + "Output Program": [ + "answer = 9 - 2\nprint(answer)" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": "Kenji and his classmates placed colored blocks on a scale during a science lab . The yellow block weighed 0.6 pounds and the green block weighed 0.4 pounds . How much more did the yellow block weigh than the green block ? ", + "Output Program": [ + "answer = 0.6 - 0.4\nprint(answer)" + ], + "Output Answer": [ + "0.2" + ], + "split": "train" + }, + { + "Input": "Joan found 70 seashells on the beach . she gave Sam some of her seashells . She has 27 seashell . How many seashells did she give to Sam ? ", + "Output Program": [ + "answer = 70 - 27\nprint(answer)" + ], + "Output Answer": [ + "43" + ], + "split": "train" + }, + { + "Input": "0.5 the students in the band are in the trumpet section . 0.125 the students in the band are in the trombone section . What fraction of the students in the band are in either the trumpet section or the trombone section ? ", + "Output Program": [ + "answer = 0.5 + 0.125\nprint(answer)" + ], + "Output Answer": [ + "0.625" + ], + "split": "train" + }, + { + "Input": "There are 2 pencils in the drawer . Tim placed 3 pencils in the drawer . How many pencils are now there in total ? ", + "Output Program": [ + "answer = 2 + 3\nprint(answer)" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "Tim has 44 books . Sam has 52 books . How many books do they have together ? ", + "Output Program": [ + "answer = 44 + 52\nprint(answer)" + ], + "Output Answer": [ + "96" + ], + "split": "train" + }, + { + "Input": "Keith spent $ 6.51 on a rabbit toy , $ 5.79 on pet food , and a cage cost him $ 12.51 . He found a dollar bill on the ground . What was the total cost of Keith 's purchases ? ", + "Output Program": [ + "answer = 6.51 + 5.79 + 12.51\nprint(answer)" + ], + "Output Answer": [ + "24.81" + ], + "split": "train" + }, + { + "Input": "Tom bought a skateboard for $ 9.46 , and spent $ 9.56 on marbles . Tom also spent $ 14.50 on shorts . In total , how much did Tom spend on toys ? ", + "Output Program": [ + "answer = 9.46 + 9.56\nprint(answer)" + ], + "Output Answer": [ + "19.02" + ], + "split": "train" + }, + { + "Input": "Last year , egg producers in Douglas County produced 1416 eggs . This year , those same farms produced 4636 eggs . How many more eggs did the farms produce this year ? ", + "Output Program": [ + "answer = 4636.0 - 1416.0\nprint(answer)" + ], + "Output Answer": [ + "3220.0" + ], + "split": "train" + }, + { + "Input": "Wendy ran 19.833333333333332 miles and walked 9.166666666666666 miles . How much farther did Wendy run than walk ? ", + "Output Program": [ + "answer = 19.833333333333332 - 9.166666666666666\nprint(answer)" + ], + "Output Answer": [ + "10.666666666666666" + ], + "split": "train" + }, + { + "Input": "Sandy grew 8 carrots and 7 turnips . Mary grew 6 carrots . How many carrots did they grow in all ? ", + "Output Program": [ + "answer = 8 + 6\nprint(answer)" + ], + "Output Answer": [ + "14" + ], + "split": "train" + }, + { + "Input": "Sam had 7 pennies and 8 dimes in his bank . His sister borrowed 4 dimes . How many dimes does Sam have now ? ", + "Output Program": [ + "answer = 8 - 4\nprint(answer)" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": "Jason went to the mall on Saturday to buy clothes . He spent $ 14.28 on shorts and $ 4.74 on a jacket . In total , how much money did Jason spend on clothing ? ", + "Output Program": [ + "answer = 14.28 + 4.74\nprint(answer)" + ], + "Output Answer": [ + "19.02" + ], + "split": "train" + }, + { + "Input": "There are 3 short trees and 6 tall trees currently in the park . Park workers will plant 9 short trees today . How many short trees will the park have when the workers are finished ? ", + "Output Program": [ + "answer = 3 + 9\nprint(answer)" + ], + "Output Answer": [ + "12" + ], + "split": "train" + }, + { + "Input": "A construction company is repaving a damaged road . So far , they have repaved a total of 4938 inches of the road . Today , they repaved 805 inches of the road . How many inches of the road had they repaved before today ? ", + "Output Program": [ + "answer = 4938.0 - 805.0\nprint(answer)" + ], + "Output Answer": [ + "4133.0" + ], + "split": "train" + }, + { + "Input": "Joan found 6 seashells, and Jessica found 8 seashells on the beach . How many seashells did they find together ? ", + "Output Program": [ + "answer = 6 + 8\nprint(answer)" + ], + "Output Answer": [ + "14" + ], + "split": "train" + }, + { + "Input": "A bucket contains 3 gallons of water . If Derek adds 6.8 gallons more , how many gallons will there be in all ? ", + "Output Program": [ + "answer = 3.0 + 6.8\nprint(answer)" + ], + "Output Answer": [ + "9.8" + ], + "split": "train" + }, + { + "Input": "Jessica is baking a cake . The recipe calls for 8 cups of flour and 2 cups of sugar . She already put in 4 cups of flour . How many cups of flour does she need to add ? ", + "Output Program": [ + "answer = 8 - 4\nprint(answer)" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": "Mike found 6 seashells and 4 starfish , but 4 of the seashells were broken . How many unbroken seashells did Mike find ? ", + "Output Program": [ + "answer = 6 - 4\nprint(answer)" + ], + "Output Answer": [ + "2" + ], + "split": "train" + }, + { + "Input": "A restaurant served 5 cakes during lunch, and 6 during dinner today . The restaurant served 3 cakes yesterday . How many cakes were served in total ? ", + "Output Program": [ + "answer = 5 + 6 + 3\nprint(answer)" + ], + "Output Answer": [ + "14" + ], + "split": "train" + }, + { + "Input": "There are 7 crayons in the drawer . Mary took 3 crayons out of the drawer . How many crayons are there now ? ", + "Output Program": [ + "answer = 7 - 3\nprint(answer)" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": "Alec and his roommates ate 3.25 pints of ice cream on Friday night and 0.25 pint of ice cream on Saturday night . How many pints did they eat in all ? ", + "Output Program": [ + "answer = 3.25 + 0.25\nprint(answer)" + ], + "Output Answer": [ + "3.5" + ], + "split": "train" + }, + { + "Input": "Melanie picked 4 plums , Dan picked 9 plums , and Sally picked 3 plums from the plum tree . How many plums were picked in total ? ", + "Output Program": [ + "answer = 4 + 9 + 3\nprint(answer)" + ], + "Output Answer": [ + "16" + ], + "split": "train" + }, + { + "Input": "Tom has 30 violet balloons. He gave Fred 16 of the balloons . How many violet balloons does he now have ? ", + "Output Program": [ + "answer = 30 - 16\nprint(answer)" + ], + "Output Answer": [ + "14" + ], + "split": "train" + }, + { + "Input": "Dan had 97 baseball cards , and 8 were torn . Sam bought 15 of Dan 's baseball cards . How many baseball cards does Dan have now ? ", + "Output Program": [ + "answer = 97 - 15\nprint(answer)" + ], + "Output Answer": [ + "82" + ], + "split": "train" + }, + { + "Input": "There are 42 walnut trees and 12 orange trees currently in the park . Park workers had to cut down 13 walnut trees that were damaged . How many walnut trees will be in the park when the workers are finished ? ", + "Output Program": [ + "answer = 42 - 13\nprint(answer)" + ], + "Output Answer": [ + "29" + ], + "split": "train" + }, + { + "Input": "Ella owns 2 dogs . Each day , 1 dog eats 0.125 scoop of dog food and the other dog eats 0.125 scoop . Together , how much dog food do the 2 dogs eat each day ? ", + "Output Program": [ + "answer = 0.125 + 0.125\nprint(answer)" + ], + "Output Answer": [ + "0.25" + ], + "split": "train" + }, + { + "Input": "A restaurant made 9 hamburgers and 4 hot dogs to serve during lunch . Only 3 hamburgers were actually served . How many hamburgers were over ? ", + "Output Program": [ + "answer = 9 - 3\nprint(answer)" + ], + "Output Answer": [ + "6" + ], + "split": "train" + }, + { + "Input": "Jonah added 0.3 cup of yellow raisins and 0.4 cup of black raisins to a batch of trail mix . How many cups of raisins did Jonah add in all ? ", + "Output Program": [ + "answer = 0.3 + 0.4\nprint(answer)" + ], + "Output Answer": [ + "0.7" + ], + "split": "train" + }, + { + "Input": "Tom purchased a Batman game for $ 13.60 , and a Superman game for $ 5.06 . Tom already owns 2 games . How much did Tom spend on video games ? ", + "Output Program": [ + "answer = 13.60 + 5.06\nprint(answer)" + ], + "Output Answer": [ + "18.66" + ], + "split": "train" + }, + { + "Input": "The Montoya family spends 0.6 their budget on groceries and another 0.2 going out to eat . Altogether , what fraction of their budget does the Montoya family spend on food ? ", + "Output Program": [ + "answer = 0.6 + 0.2\nprint(answer)" + ], + "Output Answer": [ + "0.8" + ], + "split": "train" + }, + { + "Input": "There are 9 pencils and 4 rulers in the drawer . Sally took 4 pencils out of the drawer . How many pencils are there now ? ", + "Output Program": [ + "answer = 9 - 4\nprint(answer)" + ], + "Output Answer": [ + "5" + ], + "split": "train" + }, + { + "Input": "Elizabeth went to the salon and had 0.375 inch of hair cut off . The next day she went back and asked for another 0.5 inch to be cut off . How much hair did she have cut off in all ? ", + "Output Program": [ + "answer = 0.375 + 0.5\nprint(answer)" + ], + "Output Answer": [ + "0.875" + ], + "split": "train" + }, + { + "Input": "Fred has 5 yellow balloons , Sam has 6 yellow balloons , and Mary has 7 yellow balloons . The balloons cost 5 dollars . How many yellow balloons do they have in total ? ", + "Output Program": [ + "answer = 5 + 6 + 7\nprint(answer)" + ], + "Output Answer": [ + "18" + ], + "split": "train" + }, + { + "Input": "Sara grew 4 onions , Sally grew 5 onions , and Fred grew 9 onions . How many onions did they grow in all ? ", + "Output Program": [ + "answer = 4 + 5 + 9\nprint(answer)" + ], + "Output Answer": [ + "18" + ], + "split": "train" + }, + { + "Input": "A restaurant served 9 hot dogs during lunch and 2 during dinner today . It served 5 of them yesterday . How many hot dogs were served today ? ", + "Output Program": [ + "answer = 9 + 2\nprint(answer)" + ], + "Output Answer": [ + "11" + ], + "split": "train" + }, + { + "Input": "Sam found 35 seashells on the beach. He gave Joan 18 of the seashells . How many seashells does he now have ? ", + "Output Program": [ + "answer = 35 - 18\nprint(answer)" + ], + "Output Answer": [ + "17" + ], + "split": "train" + }, + { + "Input": "Before the recent housing boom , there were 1426 houses in Lawrence County . Now , there are 2000 houses . How many houses did developers build during the housing boom ? ", + "Output Program": [ + "answer = 2000.0 - 1426.0\nprint(answer)" + ], + "Output Answer": [ + "574.0" + ], + "split": "train" + }, + { + "Input": "Bonnie 's science class recorded the rainfall each day . They recorded 0.16666666666666666 centimeter of rain on Monday , 0.4166666666666667 centimeter of rain on Tuesday , and 0.08333333333333333 centimeter of rain on Wednesday . How many centimeters of rain did the class record in all ? ", + "Output Program": [ + "answer = 0.16666666666666666 + 0.4166666666666667 + 0.08333333333333333\nprint(answer)" + ], + "Output Answer": [ + "0.6666666666666666" + ], + "split": "train" + }, + { + "Input": "Joan bought toy cars for $ 14.88 , a skateboard for $ 4.88 , and got toy trucks for $ 5.86 . She spent $ 14.55 on pants . In total , how much did Joan spend on toys ? ", + "Output Program": [ + "answer = 14.88 + 4.88 + 5.86\nprint(answer)" + ], + "Output Answer": [ + "25.62" + ], + "split": "train" + }, + { + "Input": "Sara picked 35 pears and 27 apples from the orchard . She gave 28 pears to Dan . How many pears does Sara have ? ", + "Output Program": [ + "answer = 35 - 28\nprint(answer)" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": "Milford Lake was originally blue because it only had 809 algae plants . Now there are 3263 algae plants , and the lake has turned green . How many more algae plants are in Milford Lake now ? ", + "Output Program": [ + "answer = 3263.0 - 809.0\nprint(answer)" + ], + "Output Answer": [ + "2454.0" + ], + "split": "train" + }, + { + "Input": "Sally had 8 pennies and 7 nickels in her bank . Her dad gave her 9 nickels and her mother gave her 2 nickels . How many nickels does Sally have now ? ", + "Output Program": [ + "answer = 7 + 9 + 2\nprint(answer)" + ], + "Output Answer": [ + "18" + ], + "split": "train" + }, + { + "Input": "Dan has 32 green and 38 violet marbles . Mike took 23 of Dan 's green marbles . How many green marbles does Dan now have ? ", + "Output Program": [ + "answer = 32 - 23\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": "While making pastries , a bakery used 0.2 bag of wheat flour and 0.1 bag of white flour . How many bags of flour did the bakery use in all ? ", + "Output Program": [ + "answer = 0.2 + 0.1\nprint(answer)" + ], + "Output Answer": [ + "0.3" + ], + "split": "train" + }, + { + "Input": "A truck carrying 4.1 pounds of sand travels to a construction yard and loses 2.4 pounds of sand along the way . How much sand does the truck have when it arrives at the yard ? ", + "Output Program": [ + "answer = 4.1 - 2.4\nprint(answer)" + ], + "Output Answer": [ + "1.7" + ], + "split": "train" + }, + { + "Input": "A restaurant served 7 slices of pie during lunch and 5 during dinner today . It served 8 of them yesterday . How many slices of pie were served today ? ", + "Output Program": [ + "answer = 7 + 5\nprint(answer)" + ], + "Output Answer": [ + "12" + ], + "split": "train" + }, + { + "Input": "Jason had 49 quarters in his bank . His dad gave him 25 quarters . How many quarters does he have now ? ", + "Output Program": [ + "answer = 49 + 25\nprint(answer)" + ], + "Output Answer": [ + "74" + ], + "split": "train" + }, + { + "Input": "Karin 's science class weighed plastic rings for an experiment . They found that the orange ring weighed 0.08333333333333333 ounce , the purple ring weighed 0.3333333333333333 ounce , and the white ring weighed 0.4166666666666667 ounce . What was the total weight of the plastic rings ? ", + "Output Program": [ + "answer = 0.08333333333333333 + 0.3333333333333333 + 0.4166666666666667\nprint(answer)" + ], + "Output Answer": [ + "0.8333333333333334" + ], + "split": "train" + }, + { + "Input": "Alyssa 's cat had 8 kittens and 8 had spots . She gave 4 to her friends . How many kittens does she now have ? ", + "Output Program": [ + "answer = 8 - 4\nprint(answer)" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": "Kelly 's chemistry textbook weighs 7.125 pounds and her geometry textbook weighs 0.625 pound . How much more does the chemistry textbook weigh than the geometry textbook ? ", + "Output Program": [ + "answer = 7.125 - 0.625\nprint(answer)" + ], + "Output Answer": [ + "6.5" + ], + "split": "train" + }, + { + "Input": "Sara picked 6 pears and Tim picked 5 pears from the pear tree . How many pears were picked in total ? ", + "Output Program": [ + "answer = 6 + 5\nprint(answer)" + ], + "Output Answer": [ + "11" + ], + "split": "train" + }, + { + "Input": "At the beach , Janet and her sister both built sandcastles and then measured their heights . Janet 's sandcastle was 3.6666666666666665 feet tall and her sister 's was 2.3333333333333335 feet tall . How much taller was Janet 's sandcastle than her sister 's ? ", + "Output Program": [ + "answer = 3.6666666666666665 - 2.3333333333333335\nprint(answer)" + ], + "Output Answer": [ + "1.3333333333333333" + ], + "split": "train" + }, + { + "Input": "A carpenter bought a piece of wood that was 0.41 meters long . Then she sawed 0.33 meters off the end . How long is the piece of wood now ? ", + "Output Program": [ + "answer = 0.41 - 0.33\nprint(answer)" + ], + "Output Answer": [ + "0.08" + ], + "split": "train" + }, + { + "Input": "Mike went to 15 basketball games this year , but missed 41 . He went to 39 games last year . How many basketball games did Mike go to in total ? ", + "Output Program": [ + "answer = 15 + 39\nprint(answer)" + ], + "Output Answer": [ + "54" + ], + "split": "train" + }, + { + "Input": "There are 41 pencils in the drawer . Mike placed 30 pencils in the drawer . How many pencils are now there in total ? ", + "Output Program": [ + "answer = 41 + 30\nprint(answer)" + ], + "Output Answer": [ + "71" + ], + "split": "train" + }, + { + "Input": "Fred picked 36 limes , Alyssa picked 32 limes , and Nancy picked 35 limes and 18 pears , at the farm . How many limes were picked in total ? ", + "Output Program": [ + "answer = 36 + 32 + 35\nprint(answer)" + ], + "Output Answer": [ + "103" + ], + "split": "train" + }, + { + "Input": "Vince 's bus ride to school is 0.625 mile and Zachary 's bus ride is 0.5 mile . How much longer is Vince 's bus ride than Zachary 's ? ", + "Output Program": [ + "answer = 0.625 - 0.5\nprint(answer)" + ], + "Output Answer": [ + "0.125" + ], + "split": "train" + }, + { + "Input": "During a canned food drive , items were sorted into bins . The drive resulted in 0.125 bin of soup , 0.125 bin of vegetables , and 0.5 bin of pasta . Altogether , how many bins would the canned food take up ? ", + "Output Program": [ + "answer = 0.125 + 0.125 + 0.5\nprint(answer)" + ], + "Output Answer": [ + "0.75" + ], + "split": "train" + }, + { + "Input": "Tom went to 4 hockey games this year , but missed 7 . He went to 9 games last year . How many hockey games did Tom go to in all ? ", + "Output Program": [ + "answer = 4 + 9\nprint(answer)" + ], + "Output Answer": [ + "13" + ], + "split": "train" + }, + { + "Input": "Benny received 79 dollars and 9 movie tickets for his birthday . He went to a sporting goods store and bought a baseball glove , baseball , and bat . He had 32 dollars over , how much did he spent on the baseball gear ? ", + "Output Program": [ + "answer = 79 - 32\nprint(answer)" + ], + "Output Answer": [ + "47" + ], + "split": "train" + }, + { + "Input": "Sandy grew 6 carrots . Sam grew 3 carrots . How many carrots did they grow in total ? ", + "Output Program": [ + "answer = 6 + 3\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": "Sandy had 36 pennies and 31 nickels in her bank . Her dad borrowed 20 nickels from Sandy . How many nickels does she have now ? ", + "Output Program": [ + "answer = 31 - 20\nprint(answer)" + ], + "Output Answer": [ + "11" + ], + "split": "train" + }, + { + "Input": "A restaurant served 6 cakes during lunch and 9 during dinner today . How many cakes were served today ? ", + "Output Program": [ + "answer = 6 + 9\nprint(answer)" + ], + "Output Answer": [ + "15" + ], + "split": "train" + }, + { + "Input": "There are 11 rulers and 34 crayons in the drawer . Tim placed 14 rulers in the drawer . How many rulers are now there in all ? ", + "Output Program": [ + "answer = 11 + 14\nprint(answer)" + ], + "Output Answer": [ + "25" + ], + "split": "train" + }, + { + "Input": "Mike picked 8 pears and Jason picked 7 pears from the pear tree . Fred picked 6 apples from the apple tree . How many pears were picked in total ? ", + "Output Program": [ + "answer = 8 + 7\nprint(answer)" + ], + "Output Answer": [ + "15" + ], + "split": "train" + }, + { + "Input": "Mary picked 14 oranges and Jason picked 41 oranges . Keith picked 38 apples . How many oranges were picked in all ? ", + "Output Program": [ + "answer = 14 + 41\nprint(answer)" + ], + "Output Answer": [ + "55" + ], + "split": "train" + }, + { + "Input": "Karen added 0.25 cup of walnuts to a batch of trail mix . Later , she added 0.25 cup of almonds . How many cups of nuts did Karen put in the trail mix in all ? ", + "Output Program": [ + "answer = 0.25 + 0.25\nprint(answer)" + ], + "Output Answer": [ + "0.5" + ], + "split": "train" + }, + { + "Input": "Tom found 7 seashells but 4 were broken . How many unbroken seashells did Tom find ? ", + "Output Program": [ + "answer = 7 - 4\nprint(answer)" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "Joan has 9 blue balloons , Sally has 5 blue balloons , and Jessica has 2 blue balloons . How many blue balloons do they have in total ? ", + "Output Program": [ + "answer = 9 + 5 + 2\nprint(answer)" + ], + "Output Answer": [ + "16" + ], + "split": "train" + }, + { + "Input": "Mike has 87 baseball cards . Sam bought 13 of Mike 's baseball cards . How many baseball cards does Mike have now ? ", + "Output Program": [ + "answer = 87 - 13\nprint(answer)" + ], + "Output Answer": [ + "74" + ], + "split": "train" + }, + { + "Input": "Sandy has 10 books , Benny has 24 books , and Tim has 33 books . How many books do they have together ? ", + "Output Program": [ + "answer = 10 + 24 + 33\nprint(answer)" + ], + "Output Answer": [ + "67" + ], + "split": "train" + }, + { + "Input": "Joan 's high school played 864 baseball games this year , 128 of the games were played at night . She attended 395 games . How many baseball games did Joan miss ? ", + "Output Program": [ + "answer = 864 - 395\nprint(answer)" + ], + "Output Answer": [ + "469" + ], + "split": "train" + }, + { + "Input": "At the beach , Miki and her sister both built sandcastles and then measured their heights . Miki 's sandcastle was 0.8333333333333334 foot tall and her sister 's was 0.5 foot tall . How much taller was Miki 's sandcastle than her sister 's ? ", + "Output Program": [ + "answer = 0.8333333333333334 - 0.5\nprint(answer)" + ], + "Output Answer": [ + "0.3333333333333333" + ], + "split": "train" + }, + { + "Input": "Tom found 5 seashells on the beach . he gave Jessica 2 of the seashells . How many seashells does he now have ? ", + "Output Program": [ + "answer = 5 - 2\nprint(answer)" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "At the hardware store , 0.25 the nails are size 2d and 0.5 the nails are size 4d . What fraction of the nails are either size 2d or 4d ? ", + "Output Program": [ + "answer = 0.25 + 0.5\nprint(answer)" + ], + "Output Answer": [ + "0.75" + ], + "split": "train" + }, + { + "Input": "Ezra drew a white line that was 7.666666666666667 inches long . Then he drew a blue line that was 3.3333333333333335 inches long . How much longer was the white line than the blue line ? ", + "Output Program": [ + "answer = 7.666666666666667 - 3.3333333333333335\nprint(answer)" + ], + "Output Answer": [ + "4.333333333333333" + ], + "split": "train" + }, + { + "Input": "Jason has 7 violet balloons and 4 red balloons . He lost 3 of the violet balloons . How many violet balloons does Jason have now ? ", + "Output Program": [ + "answer = 7 - 3\nprint(answer)" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": "A carpenter bought a piece of wood that was 8.9 centimeters long . Then he sawed 2.3 centimeters off the end . How long is the piece of wood now ? ", + "Output Program": [ + "answer = 8.9 - 2.3\nprint(answer)" + ], + "Output Answer": [ + "6.6" + ], + "split": "train" + }, + { + "Input": "On her vacation last summer , Trisha walked all over New York City to buy souvenirs . First , she walked 0.1111111111111111 mile from her hotel to a postcard shop . Then she walked 0.1111111111111111 mile from the postcard shop to a T-shirt shop and 0.6666666666666666 mile from the T-shirt shop back to the hotel . How many miles did Trisha walk in all ? ", + "Output Program": [ + "answer = 0.1111111111111111 + 0.1111111111111111 + 0.6666666666666666\nprint(answer)" + ], + "Output Answer": [ + "0.8888888888888888" + ], + "split": "train" + }, + { + "Input": "Shannon and her family use up a lot of strawberry and blueberry jelly , since they eat toast every morning . At the moment , they have a combined total of 6310 grams of jelly . If they have 4518 grams of blueberry jelly , how many grams of strawberry jelly do they have ? ", + "Output Program": [ + "answer = 6310.0 - 4518.0\nprint(answer)" + ], + "Output Answer": [ + "1792.0" + ], + "split": "train" + }, + { + "Input": "Jason found 49 seashells and 48 starfish on the beach . He gave 13 of the seashells to Tim . How many seashells does Jason now have ? ", + "Output Program": [ + "answer = 49 - 13\nprint(answer)" + ], + "Output Answer": [ + "36" + ], + "split": "train" + }, + { + "Input": "Mike had 34 peaches at his roadside fruit dish . He went to the orchard and picked peaches to stock up . There are now 86 peaches . how many did he pick ? ", + "Output Program": [ + "answer = 86 - 34\nprint(answer)" + ], + "Output Answer": [ + "52" + ], + "split": "train" + }, + { + "Input": "A petri dish originally contained 600 bacteria . A scientist let the bacteria grow and now there are 8917 of them . How many more bacteria are there now ? ", + "Output Program": [ + "answer = 8917.0 - 600.0\nprint(answer)" + ], + "Output Answer": [ + "8317.0" + ], + "split": "train" + }, + { + "Input": "Sally had 760 quarters in her bank . She spent 418 of her quarters . How many quarters does she have now ? ", + "Output Program": [ + "answer = 760 - 418\nprint(answer)" + ], + "Output Answer": [ + "342" + ], + "split": "train" + }, + { + "Input": "Joan has 10 books . Tom has 38 books . How many books do they have together ? ", + "Output Program": [ + "answer = 10 + 38\nprint(answer)" + ], + "Output Answer": [ + "48" + ], + "split": "train" + }, + { + "Input": "A tailor cut 0.75 inch off a skirt and 0.5 inch off a pair of pants . How much more did the tailor cut off the skirt than the pants ? ", + "Output Program": [ + "answer = 0.75 - 0.5\nprint(answer)" + ], + "Output Answer": [ + "0.25" + ], + "split": "train" + }, + { + "Input": "Benny found 66 seashells and 49 starfish on the beach . He gave 52 of the seashells to Jason . How many seashells does Benny now have ? ", + "Output Program": [ + "answer = 66 - 52\nprint(answer)" + ], + "Output Answer": [ + "14" + ], + "split": "train" + }, + { + "Input": "Mary has 9 yellow marbles. Joan has 3 yellow marbles . How many yellow marbles do they have in all ? ", + "Output Program": [ + "answer = 9 + 3\nprint(answer)" + ], + "Output Answer": [ + "12" + ], + "split": "train" + }, + { + "Input": "Keith spent $ 136.01 on speakers , $ 139.38 on a CD player , and $ 112.46 on new tires . He wanted 3 CD 's for $ 6.16 , but did n't buy them . In total , how much did he spend ? ", + "Output Program": [ + "answer = 136.01 + 139.38 + 112.46\nprint(answer)" + ], + "Output Answer": [ + "387.85" + ], + "split": "train" + }, + { + "Input": "A renovation project required 0.16666666666666666 truck-load of sand , 0.3333333333333333 truck-load of dirt , and 0.16666666666666666 truck-load of cement . How many truck-loads of material were needed in all ? ", + "Output Program": [ + "answer = 0.16666666666666666 + 0.3333333333333333 + 0.16666666666666666\nprint(answer)" + ], + "Output Answer": [ + "0.6666666666666666" + ], + "split": "train" + }, + { + "Input": "There are 41 crayons and 26 pencils in the drawer . Sam placed 12 crayons in the drawer . How many crayons are now there in total ? ", + "Output Program": [ + "answer = 41 + 12\nprint(answer)" + ], + "Output Answer": [ + "53" + ], + "split": "train" + }, + { + "Input": "There are 5 oak trees currently in the park . Park workers will plant 4 oak trees today . How many oak trees will the park have when the workers are finished ? ", + "Output Program": [ + "answer = 5 + 4\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "train" + }, + { + "Input": "There are 34 dogwood trees currently in the park . Park workers will plant 49 dogwood trees today . How many dogwood trees will the park have when the workers are finished ? ", + "Output Program": [ + "answer = 34 + 49\nprint(answer)" + ], + "Output Answer": [ + "83" + ], + "split": "train" + }, + { + "Input": "Ron weighed 2 colored metal balls during a science class . The blue ball weighed 6 pounds and the brown ball weighed 3.12 pounds . If Ron places both balls on the scale at the same time , what will the scale read ? ", + "Output Program": [ + "answer = 6.0 + 3.12\nprint(answer)" + ], + "Output Answer": [ + "9.12" + ], + "split": "train" + }, + { + "Input": "A construction company ordered 0.16666666666666666 ton of concrete , 0.16666666666666666 ton of bricks , and 0.5 ton of stone . How many tons of material did the company order in all ? ", + "Output Program": [ + "answer = 0.16666666666666666 + 0.16666666666666666 + 0.5\nprint(answer)" + ], + "Output Answer": [ + "0.8333333333333334" + ], + "split": "train" + }, + { + "Input": "A cell phone company has a total of 7422 customers across the world . If 723 of its customers live in the United States , how many of its customers live in other countries ? ", + "Output Program": [ + "answer = 7422.0 - 723.0\nprint(answer)" + ], + "Output Answer": [ + "6699.0" + ], + "split": "train" + }, + { + "Input": "Mary found 18 seashells, and Jessica found 41 seashells on the beach . How many seashells did they find together ? ", + "Output Program": [ + "answer = 18 + 41\nprint(answer)" + ], + "Output Answer": [ + "59" + ], + "split": "train" + }, + { + "Input": "Mike bought some toys . He bought marbles for $ 9.05 , a football for $ 4.95 , and spent $ 6.52 on a baseball . In total , how much did Mike spend on toys ? ", + "Output Program": [ + "answer = 9.05 + 4.95 + 6.52\nprint(answer)" + ], + "Output Answer": [ + "20.52" + ], + "split": "train" + }, + { + "Input": "Joan grew 29 carrots and 14 watermelons . Jessica grew 11 carrots . How many carrots did they grow in all ? ", + "Output Program": [ + "answer = 29 + 11\nprint(answer)" + ], + "Output Answer": [ + "40" + ], + "split": "train" + }, + { + "Input": "A multi-national corporation has 2041 part-time employees and 63093 full-time employees . How many employees work for the corporation ? ", + "Output Program": [ + "answer = 2041.0 + 63093.0\nprint(answer)" + ], + "Output Answer": [ + "65134.0" + ], + "split": "train" + }, + { + "Input": "Tim found 679 seashells and 110 starfish on the beach . He gave 172 of the seashells to Sara . How many seashells does Tim now have ? ", + "Output Program": [ + "answer = 679 - 172\nprint(answer)" + ], + "Output Answer": [ + "507" + ], + "split": "train" + }, + { + "Input": "In 1 week , Mitch 's family drank 0.5 carton of regular milk and 0.1 carton of soy milk . How much milk did they drink in all ? ", + "Output Program": [ + "answer = 0.5 + 0.1\nprint(answer)" + ], + "Output Answer": [ + "0.6" + ], + "split": "train" + }, + { + "Input": "Sally grew 113 turnips and 118 pumpkins . Mary grew 129 turnips . How many turnips did they grow in total ? ", + "Output Program": [ + "answer = 113 + 129\nprint(answer)" + ], + "Output Answer": [ + "242" + ], + "split": "train" + }, + { + "Input": "Melanie grew 139 turnips . Benny grew 113 turnips . How many turnips did they grow in all ? ", + "Output Program": [ + "answer = 139 + 113\nprint(answer)" + ], + "Output Answer": [ + "252" + ], + "split": "train" + }, + { + "Input": "Last year at Newberg 's airport , 14507 passengers landed on time . Unfortunately , 213 passengers landed late . In all , how many passengers landed in Newberg last year ? ", + "Output Program": [ + "answer = 14507.0 + 213.0\nprint(answer)" + ], + "Output Answer": [ + "14720.0" + ], + "split": "train" + }, + { + "Input": "Joan went to 4 football games this year . She went to 9 games last year . How many football games did Joan go to in all ? ", + "Output Program": [ + "answer = 4 + 9\nprint(answer)" + ], + "Output Answer": [ + "13" + ], + "split": "train" + }, + { + "Input": "To fill an order , the factory dyed 61921 yards of silk green and 49500 yards pink . How many yards of silk did it dye for that order ? ", + "Output Program": [ + "answer = 61921.0 + 49500.0\nprint(answer)" + ], + "Output Answer": [ + "111421.0" + ], + "split": "train" + }, + { + "Input": "Blake filled a bucket with 0.8 gallon of water . Later , he poured out 0.2 gallon of the water . How much water is in the bucket ? ", + "Output Program": [ + "answer = 0.8 - 0.2\nprint(answer)" + ], + "Output Answer": [ + "0.6" + ], + "split": "train" + }, + { + "Input": "Alyssa 's dog had puppies . She gave 7 to her friends . She now has 5 puppies . How many puppies did she have to start with ? ", + "Output Program": [ + "answer = 7 + 5\nprint(answer)" + ], + "Output Answer": [ + "12" + ], + "split": "train" + }, + { + "Input": "A dust storm sweeps across the prairie . It covers 64535 acres of the prairie in dust , but leaves 522 acres untouched . How many acres does the prairie cover ? ", + "Output Program": [ + "answer = 64535.0 - 522.0\nprint(answer)" + ], + "Output Answer": [ + "64013.0" + ], + "split": "train" + }, + { + "Input": "Sam had 49 pennies and 24 nickels in his bank . His dad gave him 39 nickels and 31 quarters . How many nickels does he have now ? ", + "Output Program": [ + "answer = 24 + 39\nprint(answer)" + ], + "Output Answer": [ + "63" + ], + "split": "train" + }, + { + "Input": "Sally picked 7 lemons, and Mary picked 9 lemons from the lemon tree . How many lemons were picked in total ? ", + "Output Program": [ + "answer = 7 + 9\nprint(answer)" + ], + "Output Answer": [ + "16" + ], + "split": "train" + }, + { + "Input": "Fred has 10 red balloons , Sam has 46 red balloons , and Dan has 16 red balloons . The balloons cost 10 dollars . How many red balloons do they have in all ? ", + "Output Program": [ + "answer = 10 + 46 + 16\nprint(answer)" + ], + "Output Answer": [ + "72" + ], + "split": "train" + }, + { + "Input": "At a pie-eating contest , Erik got through 0.6666666666666666 pie before time was called ; Frank finished just 0.3333333333333333 pie . How much more pie did Erik eat than Frank ? ", + "Output Program": [ + "answer = 0.6666666666666666 - 0.3333333333333333\nprint(answer)" + ], + "Output Answer": [ + "0.3333333333333333" + ], + "split": "train" + }, + { + "Input": "Oscar 's bus ride to school is 0.75 mile and Charlie 's bus ride is 0.25 mile . How much longer is Oscar 's bus ride than Charlie 's ? ", + "Output Program": [ + "answer = 0.75 - 0.25\nprint(answer)" + ], + "Output Answer": [ + "0.5" + ], + "split": "train" + }, + { + "Input": "Sam grew 4 watermelons , but the rabbits ate 3 watermelons . How many watermelons does Sam have ? ", + "Output Program": [ + "answer = 4 - 3\nprint(answer)" + ], + "Output Answer": [ + "1" + ], + "split": "train" + }, + { + "Input": "There were a total of 8 football games this year , 4 are played at night . Keith missed 4 of the games . How many football games did Keith go to in total ? ", + "Output Program": [ + "answer = 8 - 4\nprint(answer)" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": "Joan picked 37 oranges, and Sara picked 10 oranges . Alyssa picked 30 pears . How many oranges were picked in total ? ", + "Output Program": [ + "answer = 37 + 10\nprint(answer)" + ], + "Output Answer": [ + "47" + ], + "split": "train" + }, + { + "Input": "There is 0.16666666666666666 cup of oil in Scarlett 's measuring cup . If Scarlett adds 0.6666666666666666 cup more , how much oil will be in the measuring cup ? ", + "Output Program": [ + "answer = 0.16666666666666666 + 0.6666666666666666\nprint(answer)" + ], + "Output Answer": [ + "0.8333333333333334" + ], + "split": "train" + }, + { + "Input": "Joan spent $ 15 on shorts and $ 14.82 on a jacket , and $ 12.51 on a shirt . She went to 3 shops . In total , how much money did Joan spend on clothing ? ", + "Output Program": [ + "answer = 15 + 14.82 + 12.51\nprint(answer)" + ], + "Output Answer": [ + "42.33" + ], + "split": "train" + }, + { + "Input": "Dan had 7 potatoes and 4 cantelopes in the garden . The rabbits ate 4 of the potatoes . How many potatoes does Dan now have ? ", + "Output Program": [ + "answer = 7 - 4\nprint(answer)" + ], + "Output Answer": [ + "3" + ], + "split": "train" + }, + { + "Input": "There are 39 scissors and 22 pencils in the drawer . Dan placed 13 scissors in the drawer . How many scissors are now there in total ? ", + "Output Program": [ + "answer = 39 + 13\nprint(answer)" + ], + "Output Answer": [ + "52" + ], + "split": "train" + }, + { + "Input": "There are 41 short trees and 44 tall trees currently in the park . Park workers will plant 57 short trees today . How many short trees will the park have when the workers are finished ? ", + "Output Program": [ + "answer = 41 + 57\nprint(answer)" + ], + "Output Answer": [ + "98" + ], + "split": "train" + }, + { + "Input": "Mary loves eating fruits . Mary paid $ 11.08 for berries , $ 14.33 for apples , and $ 9.31 for peaches . In total , how much money did she spend ? ", + "Output Program": [ + "answer = 11.08 + 14.33 + 9.31\nprint(answer)" + ], + "Output Answer": [ + "34.72" + ], + "split": "train" + }, + { + "Input": "A farmer started the day with 8.75 buckets of seeds . After spending the morning sowing seeds , she now has 6 buckets . How many buckets of seeds did the farmer sow ? ", + "Output Program": [ + "answer = 8.75 - 6.0\nprint(answer)" + ], + "Output Answer": [ + "2.75" + ], + "split": "train" + }, + { + "Input": "Sandy went to the mall to buy clothes . She spent $ 13.99 on shorts , $ 12.14 on a shirt , and $ 7.43 on a jacket . How much money did Sandy spend on clothes ? ", + "Output Program": [ + "answer = 13.99 + 12.14 + 7.43\nprint(answer)" + ], + "Output Answer": [ + "33.56" + ], + "split": "train" + }, + { + "Input": "There are 9 oak trees currently in the park . Park workers had to cut down 2 oak trees that were damaged . How many oak trees will the park have when the workers are finished ? ", + "Output Program": [ + "answer = 9 - 2\nprint(answer)" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": "Brandy made trail mix for a backpacking trip . She used 0.16666666666666666 pound of peanuts , 0.16666666666666666 pound of chocolate chips , and 0.08333333333333333 pound of raisins . How many pounds of trail mix did Brandy make ? ", + "Output Program": [ + "answer = 0.16666666666666666 + 0.16666666666666666 + 0.08333333333333333\nprint(answer)" + ], + "Output Answer": [ + "0.4166666666666667" + ], + "split": "train" + }, + { + "Input": "There are 33 pencils and 44 crayons in the drawer . Joan placed 27 pencils in the drawer . How many pencils are now there in total ? ", + "Output Program": [ + "answer = 33 + 27 \nprint(answer)" + ], + "Output Answer": [ + "60" + ], + "split": "train" + }, + { + "Input": "The Richmond Tigers sold a total of 9570 tickets last season . If they sold 3867 tickets in the first half of the season , how many tickets did they sell in the second half ? ", + "Output Program": [ + "answer = 9570.0 - 3867.0\nprint(answer)" + ], + "Output Answer": [ + "5703.0" + ], + "split": "train" + }, + { + "Input": "Roadster 's Paving Company used 10 tons of cement to pave Lexi 's street and 5.1 tons of cement to pave Tess 's street . How much cement did Roadster 's Paving Company use in all ? ", + "Output Program": [ + "answer = 10.0 + 5.1\nprint(answer)" + ], + "Output Answer": [ + "15.1" + ], + "split": "train" + }, + { + "Input": "Melanie had 19 dimes in her bank . Her dad gave her 39 dimes and her mother gave her 25 dimes . How many dimes does Melanie have now ? ", + "Output Program": [ + "answer = 19 + 39 + 25\nprint(answer)" + ], + "Output Answer": [ + "83" + ], + "split": "train" + }, + { + "Input": "A chef bought 0.14 kilograms of almonds and 0.38 kilograms of pecans . How many kilograms of nuts did the chef buy in all ? ", + "Output Program": [ + "answer = 0.14 + 0.38\nprint(answer)" + ], + "Output Answer": [ + "0.52" + ], + "split": "train" + }, + { + "Input": "Tori is a school janitor . Last week , she picked up a total of 1576 pieces of trash . If she picked up 344 pieces of trash in the classrooms , how many pieces of trash did Tori pick up outside the classrooms ? ", + "Output Program": [ + "answer = 1576.0 - 344.0\nprint(answer)" + ], + "Output Answer": [ + "1232.0" + ], + "split": "train" + }, + { + "Input": "Keith grew 6 turnips . Alyssa grew 9 turnips . How many turnips did they grow in all ? ", + "Output Program": [ + "answer = 6 + 9\nprint(answer)" + ], + "Output Answer": [ + "15" + ], + "split": "train" + }, + { + "Input": "There are 27 pencils in the drawer . Nancy placed 45 pencils in the drawer . How many pencils are now there in total ? ", + "Output Program": [ + "answer = 27 + 45\nprint(answer)" + ], + "Output Answer": [ + "72" + ], + "split": "train" + }, + { + "Input": "Sam found 18 seashells, and Mary found 47 seashells on the beach . How many seashells did they find together ? ", + "Output Program": [ + "answer = 18 + 47\nprint(answer)" + ], + "Output Answer": [ + "65" + ], + "split": "train" + }, + { + "Input": "Hoping to be named Salesperson of the Month , Rosa called the names from 10.2 pages of the phone book last week . This week , she called the people listed on another 8.6 pages of the same phone book . How many pages worth of people did Rosa call in all ? ", + "Output Program": [ + "answer = 10.2 + 8.6\nprint(answer)" + ], + "Output Answer": [ + "18.8" + ], + "split": "train" + }, + { + "Input": "Alyssa picked 42 pears and Nancy picked 17 pears from the pear tree . How many pears were picked in all ? ", + "Output Program": [ + "answer = 42 + 17\nprint(answer)" + ], + "Output Answer": [ + "59" + ], + "split": "train" + }, + { + "Input": "It rained 0.9 inches on Monday . On Tuesday , it rained 0.7 inches less than on Monday . How much did it rain on Tuesday ? ", + "Output Program": [ + "answer = 0.9 - 0.7\nprint(answer)" + ], + "Output Answer": [ + "0.2" + ], + "split": "train" + }, + { + "Input": "Sally paid $ 12.32 total for peaches , after a 3 dollar coupon , and $ 11.54 for cherries . In total , how much money did Sally spend ? ", + "Output Program": [ + "answer = 12.32 + 11.54\nprint(answer)" + ], + "Output Answer": [ + "23.86" + ], + "split": "train" + }, + { + "Input": "Nina did a running drill to get in shape for soccer season . First , Nina ran 0.08333333333333333 mile . Then she ran 0.08333333333333333 mile and 0.6666666666666666 mile . How many miles did Nina run in total ? ", + "Output Program": [ + "answer = 0.08333333333333333 + 0.08333333333333333 + 0.6666666666666666\nprint(answer)" + ], + "Output Answer": [ + "0.8333333333333334" + ], + "split": "train" + }, + { + "Input": "Molly owns the Wafting Pie Company . This morning , her employees used 816 eggs to bake pumpkin pies . If her employees used a total of 1339 eggs today , how many eggs did they use in the afternoon ? ", + "Output Program": [ + "answer = 1339.0 - 816.0\nprint(answer)" + ], + "Output Answer": [ + "523.0" + ], + "split": "train" + }, + { + "Input": "Terrell hiked 8.2 miles on Saturday . Then , on Sunday , he hiked another 1.6 miles . How far did Terrell hike all together ? ", + "Output Program": [ + "answer = 8.2 + 1.6\nprint(answer)" + ], + "Output Answer": [ + "9.8" + ], + "split": "train" + }, + { + "Input": "Each of farmer Cunningham 's 6048 lambs is either black or white . There are 193 white ones . How many of Farmer Cunningham 's lambs are black ? ", + "Output Program": [ + "answer = 6048.0 - 193.0\nprint(answer)" + ], + "Output Answer": [ + "5855.0" + ], + "split": "train" + }, + { + "Input": "An oil pipe in the sea broke . Before engineers started to fix the pipe , 2475 gallons of oil leaked into the water . A total of 6206 gallons of oil leaked before the pipe was fixed . How many gallons of oil leaked while the engineers were fixing the pipe ? ", + "Output Program": [ + "answer = 6206.0 - 2475.0\nprint(answer)" + ], + "Output Answer": [ + "3731.0" + ], + "split": "train" + }, + { + "Input": "There are 9 crayons in the drawer . Benny placed 3 crayons in the drawer . How many crayons are now there in total ? ", + "Output Program": [ + "answer = 9 + 3\nprint(answer)" + ], + "Output Answer": [ + "12" + ], + "split": "train" + }, + { + "Input": "For his car , Mike spent $ 118.54 on speakers and $ 106.33 on new tires . Mike wanted 3 CD 's for $ 4.58 but decided not to . In total , how much did Mike spend on car parts ? ", + "Output Program": [ + "answer = 118.54 + 106.33\nprint(answer)" + ], + "Output Answer": [ + "224.87" + ], + "split": "train" + }, + { + "Input": "1 evening , a restaurant served a total of 0.2 loaf of wheat bread and 0.4 loaf of white bread . How many loaves were served in all ? ", + "Output Program": [ + "answer = 0.2 + 0.4\nprint(answer)" + ], + "Output Answer": [ + "0.6" + ], + "split": "train" + }, + { + "Input": "There are 107 walnut trees currently in the park . Park workers will plant 104 walnut trees today . How many walnut trees will the park have when the workers are finished ? ", + "Output Program": [ + "answer = 107 + 104\nprint(answer)" + ], + "Output Answer": [ + "211" + ], + "split": "train" + }, + { + "Input": "There are 4 walnut trees currently in the park . Park workers will plant 6 walnut trees today . How many walnut trees will the park have when the workers are finished ? ", + "Output Program": [ + "answer = 4 + 6\nprint(answer)" + ], + "Output Answer": [ + "10" + ], + "split": "train" + }, + { + "Input": "Mary found 2 seashells and Keith found 5 seashells on the beach . When they cleaned them , they discovered that 9 were cracked . How many seashells did they find together ? ", + "Output Program": [ + "answer = 2 + 5\nprint(answer)" + ], + "Output Answer": [ + "7" + ], + "split": "train" + }, + { + "Input": "Dale 's Vegetarian Restaurant bought 2.8333333333333335 pounds of green peppers and 2.8333333333333335 pounds of red peppers . How many pounds of peppers did Dale 's Vegetarian Restaurant buy in all ? ", + "Output Program": [ + "answer = 2.8333333333333335 + 2.8333333333333335\nprint(answer)" + ], + "Output Answer": [ + "5.666666666666667" + ], + "split": "train" + }, + { + "Input": "Melanie picked 7 plums and 4 oranges from the orchard . She gave 3 plums to Sam . How many plums does she have now ? ", + "Output Program": [ + "answer = 7 - 3\nprint(answer)" + ], + "Output Answer": [ + "4" + ], + "split": "train" + }, + { + "Input": "Alyssa picked 17 plums and Jason picked 10 plums . Melanie picked 35 pears . How many plums were picked in all ? ", + "Output Program": [ + "answer = 17 + 10\nprint(answer)" + ], + "Output Answer": [ + "27" + ], + "split": "train" + }, + { + "Input": "Dan joined his school 's band . He bought a clarinet for $ 130.30 , and a song book which was $ 11.24 . Dan found $ 12.32 in his pocket . How much did Dan spend at the music store ? ", + "Output Program": [ + "answer = 130.30 + 11.24\nprint(answer)" + ], + "Output Answer": [ + "141.54" + ], + "split": "train" + }, + { + "Input": "Eve ran 0.7 mile and walked 0.6 mile . How much farther did Eve run than walk ? ", + "Output Program": [ + "answer = 0.7 - 0.6\nprint(answer)" + ], + "Output Answer": [ + "0.1" + ], + "split": "train" + }, + { + "Input": "Hannah 's Vegetarian Restaurant bought 0.3333333333333333 pound of green peppers and 0.3333333333333333 pound of red peppers . How many pounds of peppers did Hannah 's Vegetarian Restaurant buy in all ? ", + "Output Program": [ + "answer = 0.3333333333333333 + 0.3333333333333333\nprint(answer)" + ], + "Output Answer": [ + "0.6666666666666666" + ], + "split": "train" + }, + { + "Input": "Sam had 9 dimes in his bank . His dad gave him 7 dimes . How many dimes does Sam have now ? ", + "Output Program": [ + "answer = 9 + 7\nprint(answer)" + ], + "Output Answer": [ + "16" + ], + "split": "train" + }, + { + "Input": "A ship full of grain crashes into a coral reef . By the time the ship is fixed , 49952 tons of grain have spilled into the water . Only 918 tons of grain remain onboard . How many tons of grain did the ship originally contain ? ", + "Output Program": [ + "answer = 49952.0 + 918.0\nprint(answer)" + ], + "Output Answer": [ + "50870.0" + ], + "split": "train" + }, + { + "Input": "Benny picked 2 apples, and Dan picked 9 apples from the apple tree . How many apples were picked in total ? ", + "Output Program": [ + "answer = 2 + 9\nprint(answer)" + ], + "Output Answer": [ + "11" + ], + "split": "train" + }, + { + "Input": "Mike had 33 quarters and 87 nickels in his bank . His dad borrowed 75 nickels from Mike . How many nickels does he have now ? ", + "Output Program": [ + "answer = 87 - 75\nprint(answer)" + ], + "Output Answer": [ + "12" + ], + "split": "train" + }, + { + "Input": "Brennan had 0.25 grams of pepper . Then he used 0.16 grams of the pepper to make some scrambled eggs . How much pepper does Brennan have ? ", + "Output Program": [ + "answer = 0.25 - 0.16\nprint(answer)" + ], + "Output Answer": [ + "0.09" + ], + "split": "train" + }, + { + "Input": "There were 6 roses in the vase . Mary cut some roses from her flower garden . There are now 16 roses in the vase . How many roses did she cut ? ", + "Output Program": [ + "answer = 16 - 6\nprint(answer)" + ], + "Output Answer": [ + "10" + ], + "split": "train" + }, + { + "Input": "Last year , 90171 people were born in a country , and 16320 people immigrated to it . How many new people began living in the country last year ? ", + "Output Program": [ + "answer = 90171.0 + 16320.0\nprint(answer)" + ], + "Output Answer": [ + "106491.0" + ], + "split": "train" + }, + { + "Input": "Each day , the polar bear at Richmond 's zoo eats 0.2 bucket of trout and 0.4 bucket of salmon . How many buckets of fish does the polar bear eat daily ? ", + "Output Program": [ + "answer = 0.2 + 0.4\nprint(answer)" + ], + "Output Answer": [ + "0.6" + ], + "split": "train" + }, + { + "Input": "Mandy made an apple pie . She used 0.6666666666666666 tablespoon of cinnamon and 0.5 tablespoon of nutmeg . How much more cinnamon than nutmeg did Mandy use ? ", + "Output Program": [ + "answer = 0.6666666666666666 - 0.5\nprint(answer)" + ], + "Output Answer": [ + "0.16666666666666666" + ], + "split": "train" + }, + { + "Input": "There are 47 orchid bushes currently in the park . Park workers will plant 37 orchid bushes today and 25 orchid bushes tomorrow . It took 35 workers to finish the work . How many orchid bushes will the park have when the workers are finished ? ", + "Output Program": [ + "answer = 47 + 37 + 25\nprint(answer)" + ], + "Output Answer": [ + "109" + ], + "split": "train" + }, + { + "Input": "Mary is baking a cake . The recipe wants 8 cups of flour . She already put in 2 cups . How many cups does she need to add ? ", + "Output Program": [ + "answer = 8 - 2\nprint(answer)" + ], + "Output Answer": [ + "6" + ], + "split": "dev" + }, + { + "Input": "Alyssa has 37 blue balloons , Sandy has 28 blue balloons , and Sally has 39 blue balloons . How many blue balloons do they have in all ? ", + "Output Program": [ + "answer = 37 + 28 + 39\nprint(answer)" + ], + "Output Answer": [ + "104" + ], + "split": "dev" + }, + { + "Input": "An oil pipe in the sea broke . Before engineers started to fix the pipe , 6522 liters of oil leaked into the water . While the engineers worked , the pipe leaked 5165 liters of oil . In all , how many liters of oil leaked into the water ? ", + "Output Program": [ + "answer = 6522.0 + 5165.0\nprint(answer)" + ], + "Output Answer": [ + "11687.0" + ], + "split": "dev" + }, + { + "Input": "There are 22 orchid bushes and 40 orange trees currently in the park . Park workers will plant 13 orchid bushes today . How many orchid bushes will the park have when the workers are finished ? ", + "Output Program": [ + "answer = 22 + 13\nprint(answer)" + ], + "Output Answer": [ + "35" + ], + "split": "dev" + }, + { + "Input": "Jason joined his school 's band . He bought a flute for $ 142.46 , a music tool for $ 8.89 , and a song book for $ 7 . How much did Jason spend at the music store ? ", + "Output Program": [ + "answer = 142.46 + 8.89 + 7\nprint(answer)" + ], + "Output Answer": [ + "158.35" + ], + "split": "dev" + }, + { + "Input": "As part of a lesson on earthquakes , a science class is researching the movement of a nearby fault line . The fault line moved 1.25 inches during the past year and 5.25 inches the year before . How far did the fault line move in all ? ", + "Output Program": [ + "answer = 1.25 + 5.25\nprint(answer)" + ], + "Output Answer": [ + "6.5" + ], + "split": "dev" + }, + { + "Input": "Ellen made smoothies in the blender . She used 0.2 cup of strawberries , 0.1 cup of yogurt , and 0.2 cup of orange juice . How many cups of ingredients did Ellen use for the smoothies ? ", + "Output Program": [ + "answer = 0.2 + 0.1 + 0.2\nprint(answer)" + ], + "Output Answer": [ + "0.5" + ], + "split": "dev" + }, + { + "Input": "Sally had 27 Pokemon cards . Dan gave her 41 new Pokemon cards . Sally bought 20 Pokemon cards . How many Pokemon cards does Sally have now ? ", + "Output Program": [ + "answer = 27 + 41 + 20\nprint(answer)" + ], + "Output Answer": [ + "88" + ], + "split": "dev" + }, + { + "Input": "There are 139 erasers and 118 scissors in the drawer . Jason placed 131 erasers in the drawer . How many erasers are now there in total ? ", + "Output Program": [ + "answer = 139 + 131\nprint(answer)" + ], + "Output Answer": [ + "270" + ], + "split": "dev" + }, + { + "Input": "Fred has 709 green balloons. He gave Sandy 221 of the balloons . How many green balloons does he now have ? ", + "Output Program": [ + "answer = 709 - 221\nprint(answer)" + ], + "Output Answer": [ + "488" + ], + "split": "dev" + }, + { + "Input": "Jessica spent $ 10.22 on a cat toy , and a cage cost her $ 11.73 . What was the total cost of Jessica 's purchases ? ", + "Output Program": [ + "answer = 10.22 + 11.73\nprint(answer)" + ], + "Output Answer": [ + "21.95" + ], + "split": "dev" + }, + { + "Input": "Joan 's cat had 8 kittens . She gave 2 to her friends . How many kittens does she have now ? ", + "Output Program": [ + "answer = 8 - 2\nprint(answer)" + ], + "Output Answer": [ + "6" + ], + "split": "dev" + }, + { + "Input": "A ship is filled with 5973 tons of cargo . It stops in the Bahamas , where sailors load 8723 tons of cargo onboard . How many tons of cargo does the ship hold now ? ", + "Output Program": [ + "answer = 5973.0 + 8723.0\nprint(answer)" + ], + "Output Answer": [ + "14696.0" + ], + "split": "dev" + }, + { + "Input": "Kendra made punch for her friend 's birthday party . She used 0.25 gallon of grape juice , 0.375 gallon of cranberry juice , and 0.125 gallon of club soda . How many gallons of punch did Kendra make ? ", + "Output Program": [ + "answer = 0.25 + 0.375 + 0.125\nprint(answer)" + ], + "Output Answer": [ + "0.75" + ], + "split": "dev" + }, + { + "Input": "There are 2 orchid bushes currently in the park . Park workers will plant 4 orchid bushes today . How many orchid bushes will the park have when the workers are finished ? ", + "Output Program": [ + "answer = 2 + 4\nprint(answer)" + ], + "Output Answer": [ + "6" + ], + "split": "dev" + }, + { + "Input": "Mary had 7 nickels in her bank . Her dad gave her 5 nickels . How many nickels does Mary have now ? ", + "Output Program": [ + "answer = 7 + 5\nprint(answer)" + ], + "Output Answer": [ + "12" + ], + "split": "dev" + }, + { + "Input": "The Silvergrove Public Library used a grant to purchase 2647 books . Now the library has a total of 8582 books . How many books did the library have before the grant ? ", + "Output Program": [ + "answer = 8582.0 - 2647.0\nprint(answer)" + ], + "Output Answer": [ + "5935.0" + ], + "split": "dev" + }, + { + "Input": "Mary had 8 potatoes in the garden . The rabbits ate 3 of the potatoes . How many potatoes does Mary now have ? ", + "Output Program": [ + "answer = 8 - 3\nprint(answer)" + ], + "Output Answer": [ + "5" + ], + "split": "dev" + }, + { + "Input": "Sam had 98 pennies in his bank . He spent 93 of his pennies . How many pennies does he have now ? ", + "Output Program": [ + "answer = 98 - 93\nprint(answer)" + ], + "Output Answer": [ + "5" + ], + "split": "dev" + }, + { + "Input": "Suzie found 2 worms in the yard and measured them with a ruler . 1 worm was 0.8 inch long . The other worm was 0.1 inch long . How much longer was the longer worm ? ", + "Output Program": [ + "answer = 0.8 - 0.1\nprint(answer)" + ], + "Output Answer": [ + "0.7" + ], + "split": "dev" + }, + { + "Input": "There are 39 dogwood trees currently in the park . Park workers will plant 41 dogwood trees today and 20 dogwood trees tomorrow . How many dogwood trees will the park have when the workers are finished ? ", + "Output Program": [ + "answer = 39 + 41 + 20\nprint(answer)" + ], + "Output Answer": [ + "100" + ], + "split": "dev" + }, + { + "Input": "Melanie had 7 dimes in her bank . Her dad gave her 8 dimes and her mother gave her 4 dimes . How many dimes does Melanie have now ? ", + "Output Program": [ + "answer = 7 + 8 + 4\nprint(answer)" + ], + "Output Answer": [ + "19" + ], + "split": "dev" + }, + { + "Input": "Joan has 40 blue balloons. Melanie has 41 blue balloons . How many blue balloons do they have in total ? ", + "Output Program": [ + "answer = 40 + 41\nprint(answer)" + ], + "Output Answer": [ + "81" + ], + "split": "dev" + }, + { + "Input": "Last Saturday , Spencer walked all over town running errands . First , he walked 0.3 mile from his house to the library and 0.1 mile from the library to the post office . Then he walked 0.4 mile from the post office back home . How many miles did Spencer walk in all ? ", + "Output Program": [ + "answer = 0.3 + 0.1 + 0.4\nprint(answer)" + ], + "Output Answer": [ + "0.8" + ], + "split": "dev" + }, + { + "Input": "Some insects called aphids attack a large farm . In response , the farmer releases ladybugs onto the fields . There are 12170 ladybugs with spots and 54912 ladybugs without spots . How many ladybugs are there in all ? ", + "Output Program": [ + "answer = 12170.0 + 54912.0\nprint(answer)" + ], + "Output Answer": [ + "67082.0" + ], + "split": "dev" + }, + { + "Input": "Jessica grew 35 watermelons and 30 carrots , but the rabbits ate 27 watermelons . How many watermelons does Jessica have ? ", + "Output Program": [ + "answer = 35 - 27\nprint(answer)" + ], + "Output Answer": [ + "8" + ], + "split": "dev" + }, + { + "Input": "Tom had 27 pennies and 15 dimes in his bank . His dad gave him 33 dimes and 49 nickels . How many dimes does he have now ? ", + "Output Program": [ + "answer = 15 + 33\nprint(answer)" + ], + "Output Answer": [ + "48" + ], + "split": "dev" + }, + { + "Input": "Darnel sprinted 0.875 lap and then took a break by jogging 0.75 lap . How much farther did Darnel sprint than jog ? ", + "Output Program": [ + "answer = 0.875 - 0.75\nprint(answer)" + ], + "Output Answer": [ + "0.125" + ], + "split": "dev" + }, + { + "Input": "Michelle began her pizza delivery route with 0.5 tank of gas in her car . When she made it back to the pizzeria , 0.16666666666666666 tank of gas was . How much gas did Michelle use ? ", + "Output Program": [ + "answer = 0.5 - 0.16666666666666666\nprint(answer)" + ], + "Output Answer": [ + "0.3333333333333333" + ], + "split": "dev" + }, + { + "Input": "There were 28 bales of hay in the barn . Tim stacked bales in the barn today . There are now 54 bales of hay in the barn . How many bales did he store in the barn ? ", + "Output Program": [ + "answer = 54 - 28\nprint(answer)" + ], + "Output Answer": [ + "26" + ], + "split": "dev" + }, + { + "Input": "Pamela bought 9.8 ounces of sugar , and she spilled 5.2 ounces of it on the floor . How much is ? ", + "Output Program": [ + "answer = 9.8 - 5.2\nprint(answer)" + ], + "Output Answer": [ + "4.6" + ], + "split": "dev" + }, + { + "Input": "Mike picked 7 apples , Nancy picked 3 apples , and Keith picked 6 apples and 4 pears , at the farm . How many apples were picked in total ? ", + "Output Program": [ + "answer = 7 + 3 + 6\nprint(answer)" + ], + "Output Answer": [ + "16" + ], + "split": "dev" + }, + { + "Input": "Joan joined her school 's band . She bought a trumpet for $ 149.16 , a music tool for $ 9.98 , and a song book which was $ 4.14 . Joan found $ 8.65 in her pocket . How much did Joan spend at the music store ? ", + "Output Program": [ + "answer = 149.16 + 9.98 + 4.14\nprint(answer)" + ], + "Output Answer": [ + "163.28" + ], + "split": "dev" + }, + { + "Input": "Sally had 39 baseball cards , and 9 were torn . Sara bought 24 of Sally 's baseball cards . How many baseball cards does Sally have now ? ", + "Output Program": [ + "answer = 39 - 24\nprint(answer)" + ], + "Output Answer": [ + "15" + ], + "split": "dev" + }, + { + "Input": "While taking inventory at her pastry shop , Kelly realizes that she had 0.4 box of baking powder yesterday , but the supply is now down to 0.3 box . How much more baking powder did Kelly have yesterday ? ", + "Output Program": [ + "answer = 0.4 - 0.3\nprint(answer)" + ], + "Output Answer": [ + "0.1" + ], + "split": "dev" + }, + { + "Input": "A restaurant made 9 hamburgers to serve during lunch . Only 3 were actually served . How many hamburgers were over from lunch ? ", + "Output Program": [ + "answer = 9 - 3\nprint(answer)" + ], + "Output Answer": [ + "6" + ], + "split": "dev" + }, + { + "Input": "Keith picked 3 pears and Jason picked 2 pears from the pear tree . Joan picked 5 apples from the apple tree . How many pears were picked in total ? ", + "Output Program": [ + "answer = 3 + 2\nprint(answer)" + ], + "Output Answer": [ + "5" + ], + "split": "dev" + }, + { + "Input": "Each year , salmon travel upstream , going from the ocean to the rivers where they were born . This year , 712261 male and 259378 female salmon returned to their rivers . How many salmon made the trip ? ", + "Output Program": [ + "answer = 712261.0 + 259378.0\nprint(answer)" + ], + "Output Answer": [ + "971639.0" + ], + "split": "dev" + }, + { + "Input": "Joan found 79 seashells on the beach. She gave Mike 63 of the seashells . How many seashells does she now have ? ", + "Output Program": [ + "answer = 79 - 63\nprint(answer)" + ], + "Output Answer": [ + "16" + ], + "split": "dev" + }, + { + "Input": "There are 34 pencils and 49 crayons in the drawer . Dan took 22 pencils from the drawer . How many pencils are now in the drawer ? ", + "Output Program": [ + "answer = 34 - 22\nprint(answer)" + ], + "Output Answer": [ + "12" + ], + "split": "dev" + }, + { + "Input": "During a school play , Jonah staffed the snack bar . He served 0.25 pitcher of lemonade during the first intermission , 0.4166666666666667 pitcher during the second , and 0.25 pitcher during the third . How many pitchers of lemonade did Jonah pour in all ? ", + "Output Program": [ + "answer = 0.25 + 0.4166666666666667 + 0.25\nprint(answer)" + ], + "Output Answer": [ + "0.9166666666666666" + ], + "split": "dev" + }, + { + "Input": "There are 25 popular trees currently in the park . Park workers will plant 73 popular trees today . How many popular trees will the park have when the workers are finished ? ", + "Output Program": [ + "answer = 25 + 73\nprint(answer)" + ], + "Output Answer": [ + "98" + ], + "split": "dev" + }, + { + "Input": "Nancy went to 9 football games this month . She went to 8 games last month , and plans to go to 7 games next month . She paid 3 dollars for the tickets . How many games will she attend in all ? ", + "Output Program": [ + "answer = 9 + 8 + 7\nprint(answer)" + ], + "Output Answer": [ + "24" + ], + "split": "dev" + }, + { + "Input": "Tim found 37 seashells and Sally found 13 seashells on the beach . When they cleaned them , they discovered that 25 were cracked . How many seashells did they find together ? ", + "Output Program": [ + "answer = 37 + 13\nprint(answer)" + ], + "Output Answer": [ + "50" + ], + "split": "dev" + }, + { + "Input": "Tim had 7 quarters and 9 nickels in his bank . His dad gave him 3 nickels and 5 pennies . How many nickels does Tim have now ? ", + "Output Program": [ + "answer = 9 + 3\nprint(answer)" + ], + "Output Answer": [ + "12" + ], + "split": "dev" + }, + { + "Input": "Students at Arcadia schools are participating in a coat drive . 9437 coats have been collected so far . 6922 coats were collected from the high schools , and the rest from the elementary schools . How many coats were collected at the elementary schools ? ", + "Output Program": [ + "answer = 9437.0 - 6922.0\nprint(answer)" + ], + "Output Answer": [ + "2515.0" + ], + "split": "dev" + }, + { + "Input": "Sally found 9 seashells , Tom found 7 seashells , and Jessica found 5 seashells on the beach . How many seashells did they find together ? ", + "Output Program": [ + "answer = 9 + 7 + 5\nprint(answer)" + ], + "Output Answer": [ + "21" + ], + "split": "dev" + }, + { + "Input": "Jason went to 11 football games this month . He went to 17 games last month , and plans to go to 16 games next month . How many games will he attend in all ? ", + "Output Program": [ + "answer = 11 + 17 + 16\nprint(answer)" + ], + "Output Answer": [ + "44" + ], + "split": "dev" + }, + { + "Input": "There were originally 20817 houses in Lincoln County . During a housing boom , developers built 97741 . How many houses are there now in Lincoln County ? ", + "Output Program": [ + "answer = 20817.0 + 97741.0\nprint(answer)" + ], + "Output Answer": [ + "118558.0" + ], + "split": "dev" + }, + { + "Input": "Alyssa went to 11 soccer games this year , but missed 12 . She went to 13 games last year and plans to go to 15 games next year . How many soccer games will Alyssa go to in all ? ", + "Output Program": [ + "answer = 11 + 13 + 15\nprint(answer)" + ], + "Output Answer": [ + "39" + ], + "split": "dev" + }, + { + "Input": "Kelly bought 0.1 pounds of peanuts and 0.4 pounds of raisins . How many pounds of snacks did she buy in all ? ", + "Output Program": [ + "answer = 0.1 + 0.4\nprint(answer)" + ], + "Output Answer": [ + "0.5" + ], + "split": "dev" + }, + { + "Input": "Sandy 's dog had 8 puppies and 4 had spots . She gave 4 to her friends . How many puppies does she now have ? ", + "Output Program": [ + "answer = 8 - 4\nprint(answer)" + ], + "Output Answer": [ + "4" + ], + "split": "dev" + }, + { + "Input": "Mary is baking a cake . The recipe calls for 7 cups of flour and 3 cups of sugar . She already put in 2 cups of flour . How many cups of flour does she need to add ? ", + "Output Program": [ + "answer = 7 - 2\nprint(answer)" + ], + "Output Answer": [ + "5" + ], + "split": "dev" + }, + { + "Input": "In Mr. Olsen 's mathematics class , 0.7 the students received A 's and 0.2 received B 's . What fraction of the students received either A 's or B 's ? ", + "Output Program": [ + "answer = 0.7 + 0.2\nprint(answer)" + ], + "Output Answer": [ + "0.9" + ], + "split": "dev" + }, + { + "Input": "Jason picked 46 pears , Keith picked 47 pears , and Mike picked 12 pears from the pear tree . How many pears were picked in total ? ", + "Output Program": [ + "answer = 46 + 47 + 12\nprint(answer)" + ], + "Output Answer": [ + "105" + ], + "split": "dev" + }, + { + "Input": "Joan picked 43 apples from the orchard , and gave 27 apples to Melanie . How many apples does Joan have now ? ", + "Output Program": [ + "answer = 43 - 27\nprint(answer)" + ], + "Output Answer": [ + "16" + ], + "split": "dev" + }, + { + "Input": "There are 37 short bushes and 30 tall trees currently in the park . Park workers will plant 20 short bushes today . How many short bushes will the park have when the workers are finished ? ", + "Output Program": [ + "answer = 37 + 20\nprint(answer)" + ], + "Output Answer": [ + "57" + ], + "split": "dev" + }, + { + "Input": "Mary had 18 baseball cards , and 8 were torn . Fred gave Mary 26 new baseball cards . Mary bought 40 baseball cards . How many baseball cards does Mary have now ? ", + "Output Program": [ + "answer = 18 + 26 + 40\nprint(answer)" + ], + "Output Answer": [ + "84" + ], + "split": "dev" + }, + { + "Input": "A treasure hunter discovered a buried treasure chest filled with a total of 5155 gems . 45 of the gems were diamonds , and the rest were rubies . How many of the gems were rubies ? ", + "Output Program": [ + "answer = 5155.0 - 45.0\nprint(answer)" + ], + "Output Answer": [ + "5110.0" + ], + "split": "dev" + }, + { + "Input": "In Yardley it snowed 0.125 inch in the morning and 0.5 inch in the afternoon . What was the total amount of snowfall ? ", + "Output Program": [ + "answer = 0.125 + 0.5\nprint(answer)" + ], + "Output Answer": [ + "0.625" + ], + "split": "dev" + }, + { + "Input": "Irene just bought a new lamp for her bedside table . The old lamp was 1 foot tall and the new lamp is 2.3333333333333335 feet tall . How much taller is the new lamp than the old lamp ? ", + "Output Program": [ + "answer = 2.3333333333333335 - 1.0\nprint(answer)" + ], + "Output Answer": [ + "1.3333333333333333" + ], + "split": "dev" + }, + { + "Input": "Mike has 8 orange marbles. He gave Sam 4 of the marbles . How many orange marbles does he now have ? ", + "Output Program": [ + "answer = 8 - 4\nprint(answer)" + ], + "Output Answer": [ + "4" + ], + "split": "dev" + }, + { + "Input": "There are 7 dogwood trees currently in the park . Park workers will plant 5 dogwood trees today and 4 dogwood trees tomorrow . It took 8 workers to finish the work . How many dogwood trees will the park have when the workers are finished ? ", + "Output Program": [ + "answer = 7 + 5 + 4\nprint(answer)" + ], + "Output Answer": [ + "16" + ], + "split": "dev" + }, + { + "Input": "A construction company bought 5.91 tons of gravel and 8.11 tons of sand . How many tons of material did the company buy in all ? ", + "Output Program": [ + "answer = 5.91 + 8.11\nprint(answer)" + ], + "Output Answer": [ + "14.02" + ], + "split": "dev" + }, + { + "Input": "Sara grew 43 pumpkins , but the rabbits ate 23 pumpkins . How many pumpkins does Sara have ? ", + "Output Program": [ + "answer = 43 - 23\nprint(answer)" + ], + "Output Answer": [ + "20" + ], + "split": "dev" + }, + { + "Input": "Fred had 7 dimes in his bank . His sister borrowed 3 of his dimes . How many dimes does Fred have now ? ", + "Output Program": [ + "answer = 7 - 3\nprint(answer)" + ], + "Output Answer": [ + "4" + ], + "split": "dev" + }, + { + "Input": "A car company produced 3884 cars in North America and 2871 cars in Europe . How many cars is that in all ? ", + "Output Program": [ + "answer = 3884.0 + 2871.0\nprint(answer)" + ], + "Output Answer": [ + "6755.0" + ], + "split": "dev" + }, + { + "Input": "Diane is a beekeeper . Last year , she harvested 2479 pounds of honey . This year , she bought some new hives and increased her honey harvest by 6085 pounds . How many pounds of honey did Diane harvest this year ? ", + "Output Program": [ + "answer = 2479.0 + 6085.0\nprint(answer)" + ], + "Output Answer": [ + "8564.0" + ], + "split": "dev" + }, + { + "Input": "Fred grew 38 cantelopes . Tim grew 44 cantelopes . How many cantelopes did they grow in total ? ", + "Output Program": [ + "answer = 38 + 44\nprint(answer)" + ], + "Output Answer": [ + "82" + ], + "split": "dev" + }, + { + "Input": "Jason has 676 Pokemon cards . Alyssa bought 224 of Jason 's Pokemon cards . How many Pokemon cards does Jason have now ? ", + "Output Program": [ + "answer = 676 - 224\nprint(answer)" + ], + "Output Answer": [ + "452" + ], + "split": "dev" + }, + { + "Input": "Joan has 9 blue balloons but lost 2 of them . How many blue balloons does Joan have now ? ", + "Output Program": [ + "answer = 9 - 2\nprint(answer)" + ], + "Output Answer": [ + "7" + ], + "split": "dev" + }, + { + "Input": "Mary went to the mall . She spent $ 13.04 on a shirt and $ 12.27 on a jacket . She went to 2 shops . In total , how much money did Mary spend on clothing ? ", + "Output Program": [ + "answer = 13.04 + 12.27\nprint(answer)" + ], + "Output Answer": [ + "25.31" + ], + "split": "dev" + }, + { + "Input": "Alyssa bought some toys . She bought a football for $ 5.71 , and spent $ 6.59 on marbles . In total , how much did Alyssa spend on toys ? ", + "Output Program": [ + "answer = 5.71 + 6.59\nprint(answer)" + ], + "Output Answer": [ + "12.3" + ], + "split": "dev" + }, + { + "Input": "Joan purchased a basketball game for $ 5.20 , and a racing game for $ 4.23 . How much did Joan spend on video games ? ", + "Output Program": [ + "answer = 5.20 + 4.23\nprint(answer)" + ], + "Output Answer": [ + "9.43" + ], + "split": "dev" + }, + { + "Input": "Joan grew 24 pumpkins , Keith grew 42 pumpkins , and Alyssa grew 13 pumpkins . They worked for 34 days on the farm . How many pumpkins did they grow in all ? ", + "Output Program": [ + "answer = 24 + 42 + 13\nprint(answer)" + ], + "Output Answer": [ + "79" + ], + "split": "test" + }, + { + "Input": "Nancy found 35 seashells and 25 starfish on the beach . She gave 17 of the seashells to Jason . How many seashells does Nancy now have ? ", + "Output Program": [ + "answer = 35 - 17\nprint(answer)" + ], + "Output Answer": [ + "18" + ], + "split": "test" + }, + { + "Input": "Alyssa picked 25 limes and Mike picked 32 limes . Tom picked 12 plums . How many limes were picked in all ? ", + "Output Program": [ + "answer = 25 + 32\nprint(answer)" + ], + "Output Answer": [ + "57" + ], + "split": "test" + }, + { + "Input": "Recently , the value of Kate 's retirement fund decreased by $ 12 . If her fund was worth $ 1472 before , how much is it worth now ? ", + "Output Program": [ + "answer = 1472.0 - 12.0\nprint(answer)" + ], + "Output Answer": [ + "1460.0" + ], + "split": "test" + }, + { + "Input": "During a visit to an orchard , Charlie picked 0.16666666666666666 bag of Golden Delicious apples , 0.16666666666666666 bag of Macintosh apples , and 0.3333333333333333 bag of Cortland apples . How many bags of fruit did Charlie pick in total ? ", + "Output Program": [ + "answer = 0.16666666666666666 + 0.16666666666666666 + 0.3333333333333333\nprint(answer)" + ], + "Output Answer": [ + "0.6666666666666666" + ], + "split": "test" + }, + { + "Input": "Joan grew 8 watermelons and 4 turnips . Tom grew 9 watermelons . How many watermelons did they grow in total ? ", + "Output Program": [ + "answer = 8 + 9\nprint(answer)" + ], + "Output Answer": [ + "17" + ], + "split": "test" + }, + { + "Input": "Dan grew 42 turnips and 38 cantelopes . Jessica grew 47 turnips . How many turnips did they grow in total ? ", + "Output Program": [ + "answer = 42 + 47\nprint(answer)" + ], + "Output Answer": [ + "89" + ], + "split": "test" + }, + { + "Input": "Keith has 20 books . Jason has 21 books . How many books do they have together ? ", + "Output Program": [ + "answer = 20 + 21\nprint(answer)" + ], + "Output Answer": [ + "41" + ], + "split": "test" + }, + { + "Input": "So far , an orchard has sold a combined total of 9792 pounds of fresh and frozen fruit this season . If they have sold 3513 pounds of frozen fruit , how many pounds of fresh fruit have been sold so far ? ", + "Output Program": [ + "answer = 9792.0 - 3513.0\nprint(answer)" + ], + "Output Answer": [ + "6279.0" + ], + "split": "test" + }, + { + "Input": "There are 54 scissors in the drawer . Keith placed 22 scissors in the drawer . How many scissors are now there in all ? ", + "Output Program": [ + "answer = 54 + 22\nprint(answer)" + ], + "Output Answer": [ + "76" + ], + "split": "test" + }, + { + "Input": "Sam has 16 blue and 25 green balloons . Alyssa has 21 blue balloons . How many blue balloons do they have in all ? ", + "Output Program": [ + "answer = 16 + 21\nprint(answer)" + ], + "Output Answer": [ + "37" + ], + "split": "test" + }, + { + "Input": "Sara 's high school played 12 basketball games this year . The team won most of their games . They were defeated during 4 games . How many games did they win ? ", + "Output Program": [ + "answer = 12 - 4\nprint(answer)" + ], + "Output Answer": [ + "8" + ], + "split": "test" + }, + { + "Input": "Joan has 47 green and 48 red marbles . Fred took 24 of Joan 's green marbles . How many green marbles does Joan now have ? ", + "Output Program": [ + "answer = 47 - 24\nprint(answer)" + ], + "Output Answer": [ + "23" + ], + "split": "test" + }, + { + "Input": "Sara had 4 quarters and 8 dimes in her bank . Her sister borrowed 4 dimes . How many dimes does Sara have now ? ", + "Output Program": [ + "answer = 8 - 4\nprint(answer)" + ], + "Output Answer": [ + "4" + ], + "split": "test" + }, + { + "Input": "On a hot day , Sam poured 1 bucket of water into a plastic wading pool . A few minutes later he added another 8.8 buckets . How much water did Sam pour into the pool ? ", + "Output Program": [ + "answer = 1.0 + 8.8\nprint(answer)" + ], + "Output Answer": [ + "9.8" + ], + "split": "test" + }, + { + "Input": "Sara has 792 black and 122 red marbles . Fred took 233 of Sara 's black marbles . How many black marbles does Sara now have ? ", + "Output Program": [ + "answer = 792 - 233\nprint(answer)" + ], + "Output Answer": [ + "559" + ], + "split": "test" + }, + { + "Input": "A worker at a medical lab is studying blood samples . 2 samples contained a total of 7341 blood cells . The first sample contained 4221 blood cells . How many blood cells were in the second sample ? ", + "Output Program": [ + "answer = 7341.0 - 4221.0\nprint(answer)" + ], + "Output Answer": [ + "3120.0" + ], + "split": "test" + }, + { + "Input": "There are 46 rulers in the drawer . Tim took 25 rulers from the drawer . How many rulers are now in the drawer ? ", + "Output Program": [ + "answer = 46 - 25\nprint(answer)" + ], + "Output Answer": [ + "21" + ], + "split": "test" + }, + { + "Input": "Dina made cookies . She used 0.625 cup of flour and 0.25 cup of sugar . How much more flour than sugar did Dina use ? ", + "Output Program": [ + "answer = 0.625 - 0.25\nprint(answer)" + ], + "Output Answer": [ + "0.375" + ], + "split": "test" + }, + { + "Input": "Carefully following a recipe , Kenny used exactly 0.16666666666666666 cup of oil and 1.1666666666666667 cups of water . How many cups of liquid did Kenny use in all ? ", + "Output Program": [ + "answer = 0.16666666666666666 + 1.1666666666666667\nprint(answer)" + ], + "Output Answer": [ + "1.3333333333333333" + ], + "split": "test" + }, + { + "Input": "There are 48 pencils and 40 scissors in the drawer . Joan placed 29 pencils in the drawer . How many pencils are now there in all ? ", + "Output Program": [ + "answer = 48 + 29\nprint(answer)" + ], + "Output Answer": [ + "77" + ], + "split": "test" + }, + { + "Input": "Keith grew 29 cantelopes , Fred grew 16 cantelopes , and Jason grew 20 cantelopes . How many cantelopes did they grow in total ? ", + "Output Program": [ + "answer = 29 + 16 + 20\nprint(answer)" + ], + "Output Answer": [ + "65" + ], + "split": "test" + }, + { + "Input": "Nancy grew 6 potatoes . Sandy grew 7 potatoes . How many potatoes did they grow in total ? ", + "Output Program": [ + "answer = 6 + 7\nprint(answer)" + ], + "Output Answer": [ + "13" + ], + "split": "test" + }, + { + "Input": "There are 7 dogwood trees currently in the park . Park workers will plant 3 dogwood trees today and 2 dogwood trees tomorrow . How many dogwood trees will the park have when the workers are finished ? ", + "Output Program": [ + "answer = 7 + 3 + 2\nprint(answer)" + ], + "Output Answer": [ + "12" + ], + "split": "test" + }, + { + "Input": "It rained 0.2 inches on Saturday and 0.4 inches on Sunday . How much did it rain on Saturday and Sunday combined ? ", + "Output Program": [ + "answer = 0.2 + 0.4\nprint(answer)" + ], + "Output Answer": [ + "0.6" + ], + "split": "test" + }, + { + "Input": "There are 6 pencils and 7 rulers in the drawer . Benny placed 3 pencils in the drawer . How many pencils are now there in total ? ", + "Output Program": [ + "answer = 6 + 3\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "test" + }, + { + "Input": "Mary had 21 dimes and 38 pennies in her bank . Her dad borrowed 18 pennies from Mary . How many pennies does she have now ? ", + "Output Program": [ + "answer = 38 - 18\nprint(answer)" + ], + "Output Answer": [ + "20" + ], + "split": "test" + }, + { + "Input": "Abe 's family moved from the Bahamas to Japan , so they had convert their money into Japanese yen . Their checking account now has 6359 yen and their savings account now has 3485 yen . How many yen do they have ? ", + "Output Program": [ + "answer = 6359.0 + 3485.0\nprint(answer)" + ], + "Output Answer": [ + "9844.0" + ], + "split": "test" + }, + { + "Input": "Joan had 5 dimes in her bank . She spent 2 of her dimes . How many dimes does she have now ? ", + "Output Program": [ + "answer = 5 - 2\nprint(answer)" + ], + "Output Answer": [ + "3" + ], + "split": "test" + }, + { + "Input": "Mary got fast food for lunch . Mary spent $ 1.08 on soup and $ 4.80 on a salad . Mary paid with a 20 dollar bill . What was the total of the lunch bill ? ", + "Output Program": [ + "answer = 1.08 + 4.80\nprint(answer)" + ], + "Output Answer": [ + "5.88" + ], + "split": "test" + }, + { + "Input": "Sally grew 6 carrots . Fred grew 4 carrots . How many carrots did they grow in all ? ", + "Output Program": [ + "answer = 6 + 4\nprint(answer)" + ], + "Output Answer": [ + "10" + ], + "split": "test" + }, + { + "Input": "While playing a video game , Paul scored 3103 points . He and his cousin together have a total of 5816 points . How many points does Paul 's cousin have ? ", + "Output Program": [ + "answer = 5816.0 - 3103.0\nprint(answer)" + ], + "Output Answer": [ + "2713.0" + ], + "split": "test" + }, + { + "Input": "A company painted some houses in Hancock County white and blue using a total of 6689 gallons of paint . If they used 660 gallons of white paint , how many gallons of blue paint did the company use ? ", + "Output Program": [ + "answer = 6689.0 - 660.0\nprint(answer)" + ], + "Output Answer": [ + "6029.0" + ], + "split": "test" + }, + { + "Input": "Logan recorded the snowfall every day during a snowstorm . He recorded 0.3333333333333333 centimeter on Wednesday , 0.3333333333333333 centimeter on Thursday , and 0.2222222222222222 centimeter on Friday . How many total centimeters of snow did Logan record ? ", + "Output Program": [ + "answer = 0.3333333333333333 + 0.3333333333333333 + 0.2222222222222222\nprint(answer)" + ], + "Output Answer": [ + "0.8888888888888888" + ], + "split": "test" + }, + { + "Input": "There are 115 pencils in the drawer . Sara placed 100 pencils in the drawer . How many pencils are now there in all ? ", + "Output Program": [ + "answer = 115 + 100\nprint(answer)" + ], + "Output Answer": [ + "215" + ], + "split": "test" + }, + { + "Input": "Dan picked 9 limes and gave Sara 4 of the limes . How many limes does Dan have now ? ", + "Output Program": [ + "answer = 9 - 4\nprint(answer)" + ], + "Output Answer": [ + "5" + ], + "split": "test" + }, + { + "Input": "A marine biologist measured 1 fish that was 0.3 foot long and a second fish that was 0.2 foot long . How much longer was the first fish ? ", + "Output Program": [ + "answer = 0.3 - 0.2\nprint(answer)" + ], + "Output Answer": [ + "0.1" + ], + "split": "test" + }, + { + "Input": "Joan decided to sell all of her old books . She gathered up 33 books to sell . She sold 26 books in a yard sale . How many books does Joan now have ? ", + "Output Program": [ + "answer = 33 - 26\nprint(answer)" + ], + "Output Answer": [ + "7" + ], + "split": "test" + }, + { + "Input": "In Shannon 's apartment complex , 0.16666666666666666 the apartments are one-bedroom apartments and 0.3333333333333333 are two-bedroom apartments . What fraction of the apartments are either 1 - or two-bedroom apartments ? ", + "Output Program": [ + "answer = 0.16666666666666666 + 0.3333333333333333\nprint(answer)" + ], + "Output Answer": [ + "0.5" + ], + "split": "test" + }, + { + "Input": "A spaceship traveled 0.5 light-year from Earth to Planet X and 0.1 light-year from Planet X to Planet Y. Then it traveled 0.1 light-year from Planet Y back to Earth . How many light-years did the spaceship travel in all ? ", + "Output Program": [ + "answer = 0.5 + 0.1 + 0.1\nprint(answer)" + ], + "Output Answer": [ + "0.7" + ], + "split": "test" + }, + { + "Input": "Alyssa loves eating fruits . Alyssa paid $ 12.08 for grapes , and $ 9.85 for cherries . In total , how much money did Alyssa spend ? ", + "Output Program": [ + "answer = 12.08 + 9.85\nprint(answer)" + ], + "Output Answer": [ + "21.93" + ], + "split": "test" + }, + { + "Input": "Mike picked 123 oranges and Melanie picked 104 oranges . Fred picked 130 apples . How many oranges were picked in total ? ", + "Output Program": [ + "answer = 123 + 104\nprint(answer)" + ], + "Output Answer": [ + "227" + ], + "split": "test" + }, + { + "Input": "Joan had 695 Pokemon cards , and 6 were torn . Sara bought 133 of Joan 's Pokemon cards . How many Pokemon cards does Joan have now ? ", + "Output Program": [ + "answer = 695 - 133\nprint(answer)" + ], + "Output Answer": [ + "562" + ], + "split": "test" + }, + { + "Input": "Jason grew 32 watermelons and 22 cantelopes . Dan grew 31 watermelons . How many watermelons did they grow in total ? ", + "Output Program": [ + "answer = 32 + 31\nprint(answer)" + ], + "Output Answer": [ + "63" + ], + "split": "test" + }, + { + "Input": "There are 22 walnut trees currently in the park . Park workers will plant walnut trees today . When the workers are finished there will be 55 walnut trees in the park . How many walnut trees did the workers plant today ? ", + "Output Program": [ + "answer = 55 - 22\nprint(answer)" + ], + "Output Answer": [ + "33" + ], + "split": "test" + }, + { + "Input": "Fred found 47 seashells on the beach. He gave Jessica 25 of the seashells . How many seashells does he now have ? ", + "Output Program": [ + "answer = 47 - 25\nprint(answer)" + ], + "Output Answer": [ + "22" + ], + "split": "test" + }, + { + "Input": "Melanie had 10 quarters and 17 pennies in her bank . Her dad gave her 27 pennies and her mother gave her 19 pennies . How many pennies does Melanie have now ? ", + "Output Program": [ + "answer = 17 + 27 + 19\nprint(answer)" + ], + "Output Answer": [ + "63" + ], + "split": "test" + }, + { + "Input": "Craig walked 0.2 mile from school to David 's house and 0.7 mile from David 's house to his own house . How many miles did Craig walk in all ? ", + "Output Program": [ + "answer = 0.2 + 0.7\nprint(answer)" + ], + "Output Answer": [ + "0.9" + ], + "split": "test" + }, + { + "Input": "Mike joined his school's band . He bought a trumpet for $ 145.16 , and a song book which was $ 5.84 . How much did Mike spend at the music store ? ", + "Output Program": [ + "answer = 145.16 + 5.84\nprint(answer)" + ], + "Output Answer": [ + "151" + ], + "split": "test" + }, + { + "Input": "At a pizza party , Mason and his friends drank 2.6666666666666665 bottles of lemon-lime soda and 2.6666666666666665 bottles of cola . How much soda did they drink in all ? ", + "Output Program": [ + "answer = 2.6666666666666665 + 2.6666666666666665\nprint(answer)" + ], + "Output Answer": [ + "5.333333333333333" + ], + "split": "test" + }, + { + "Input": "Tim 's cat had kittens . He gave 3 to Jessica and 6 to Sara . He now has 9 kittens . How many kittens did he have to start with ? ", + "Output Program": [ + "answer = 3 + 6 + 9\nprint(answer)" + ], + "Output Answer": [ + "18" + ], + "split": "test" + }, + { + "Input": "Jason has 43 blue and 16 red marbles . Tom has 24 blue marbles . How many blue marbles do they have in all ? ", + "Output Program": [ + "answer = 43 + 24\nprint(answer)" + ], + "Output Answer": [ + "67" + ], + "split": "test" + }, + { + "Input": "When Jake had 1 cat , he needed to serve 0.5 can of cat food each day . Now that Jake has adopted a second cat , he needs to serve a total of 0.9 can each day . How much extra food is needed to feed the second cat ? ", + "Output Program": [ + "answer = 0.9 - 0.5\nprint(answer)" + ], + "Output Answer": [ + "0.4" + ], + "split": "test" + }, + { + "Input": "Joan has 8 orange balloons but lost 2 of them . How many orange balloons does Joan have now ? ", + "Output Program": [ + "answer = 8 - 2\nprint(answer)" + ], + "Output Answer": [ + "6" + ], + "split": "test" + }, + { + "Input": "Sara had 100 pennies and 783 quarters in her bank . Her dad borrowed 271 quarters from Sara . How many quarters does she have now ? ", + "Output Program": [ + "answer = 783 - 271\nprint(answer)" + ], + "Output Answer": [ + "512" + ], + "split": "test" + }, + { + "Input": "Before starting her shift , a waitress checks to make sure there is enough mustard for her customers . She finds 0.25 bottle at the first table , 0.25 bottle at the second table , and 0.375 bottle at the third table . Altogether , how many bottles of mustard does the waitress find ? ", + "Output Program": [ + "answer = 0.25 + 0.25 + 0.375\nprint(answer)" + ], + "Output Answer": [ + "0.875" + ], + "split": "test" + }, + { + "Input": "Fred went to 36 basketball games this year , but missed 35 . He went to 11 games last year . How many basketball games did Fred go to in total ? ", + "Output Program": [ + "answer = 36 + 11\nprint(answer)" + ], + "Output Answer": [ + "47" + ], + "split": "test" + }, + { + "Input": "Sandy grew 51 pumpkins . Mike grew 23 pumpkins . How many pumpkins did they grow in total ? ", + "Output Program": [ + "answer = 51 + 23\nprint(answer)" + ], + "Output Answer": [ + "74" + ], + "split": "test" + }, + { + "Input": "There are 33 walnut trees currently in the park . Park workers will plant 44 walnut trees today . How many walnut trees will the park have when the workers are finished ? ", + "Output Program": [ + "answer = 33 + 44\nprint(answer)" + ], + "Output Answer": [ + "77" + ], + "split": "test" + }, + { + "Input": "A farmer estimates that he will harvest 48097 bushels of wheat . The weather is perfect during the growing season , so he harvests 684 bushels of wheat than expected . How many bushels of wheat does the farmer harvest ? ", + "Output Program": [ + "answer = 48097.0 + 684.0\nprint(answer)" + ], + "Output Answer": [ + "48781.0" + ], + "split": "test" + }, + { + "Input": "Tim has 22 books . Mike has 20 books . How many books do they have together ? ", + "Output Program": [ + "answer = 22 + 20\nprint(answer)" + ], + "Output Answer": [ + "42" + ], + "split": "test" + }, + { + "Input": "Dan spent $ 11.76 on a snake toy , and a cage cost him $ 14.54 . Dan also found a dollar bill on the ground . What was the total cost of Dan 's purchases ? ", + "Output Program": [ + "answer = 11.76 + 14.54\nprint(answer)" + ], + "Output Answer": [ + "26.3" + ], + "split": "test" + }, + { + "Input": "Jason has 3 Pokemon cards . Benny bought 2 of Jason 's Pokemon cards . How many Pokemon cards does Jason have now ? ", + "Output Program": [ + "answer = 3 - 2\nprint(answer)" + ], + "Output Answer": [ + "1" + ], + "split": "test" + }, + { + "Input": "Kevin bought 2 watermelons . The first watermelon was 9.91 pounds , and the second watermelon was 4.11 pounds . How many pounds of watermelon did Kevin buy ? ", + "Output Program": [ + "answer = 9.91 + 4.11\nprint(answer)" + ], + "Output Answer": [ + "14.02" + ], + "split": "test" + }, + { + "Input": "Nancy grew 2 onions , Dan grew 9 onions , and Mike grew 4 onions . They worked for 6 days on the farm . How many onions did they grow in total ? ", + "Output Program": [ + "answer = 2 + 9 + 4\nprint(answer)" + ], + "Output Answer": [ + "15" + ], + "split": "test" + }, + { + "Input": "A waitress put leftover tarts into the fridge on Thursday night . She noticed that the restaurant had 0.08333333333333333 tart filled with cherries , 0.75 tart filled with blueberries , and 0.08333333333333333 tart filled with peaches . How many leftover tarts did the restaurant have in all ? ", + "Output Program": [ + "answer = 0.08333333333333333 + 0.75 + 0.08333333333333333\nprint(answer)" + ], + "Output Answer": [ + "0.9166666666666666" + ], + "split": "test" + }, + { + "Input": "Stanley ran 0.4 mile and walked 0.2 mile . How much farther did Stanley run than walk ? ", + "Output Program": [ + "answer = 0.4 - 0.2\nprint(answer)" + ], + "Output Answer": [ + "0.2" + ], + "split": "test" + }, + { + "Input": "In March it rained 0.81 inches . It rained 0.35 inches less in April than in March . How much did it rain in April ? ", + "Output Program": [ + "answer = 0.81 - 0.35\nprint(answer)" + ], + "Output Answer": [ + "0.46" + ], + "split": "test" + }, + { + "Input": "Tom found 15 seashells, and Fred found 43 seashells on the beach . When they cleaned them , they discovered that 29 were cracked . How many seashells did they find together ? ", + "Output Program": [ + "answer = 15 + 43\nprint(answer)" + ], + "Output Answer": [ + "58" + ], + "split": "test" + }, + { + "Input": "A restaurant served 4 pies during lunch and 9 during dinner today . The restaurant served 7 pies and 2 pizzas yesterday . How many pies were served in total ? ", + "Output Program": [ + "answer = 4 + 9 + 7\nprint(answer)" + ], + "Output Answer": [ + "20" + ], + "split": "test" + }, + { + "Input": "Gordon bought 3.42 pounds of fruit for a class party . The class ate 2.2 pounds of the fruit . How much fruit is ? ", + "Output Program": [ + "answer = 3.42 - 2.2\nprint(answer)" + ], + "Output Answer": [ + "1.22" + ], + "split": "test" + }, + { + "Input": "Mary found 45 seashells , Melanie found 23 seashells , and Jason found 32 seashells on the beach . When they cleaned them , they discovered that 31 were cracked . How many seashells did they find together ? ", + "Output Program": [ + "answer = 45 + 23 + 32\nprint(answer)" + ], + "Output Answer": [ + "100" + ], + "split": "test" + }, + { + "Input": "Sam has 86 yellow and 20 green marbles . Joan took 25 of Sam 's yellow marbles . How many yellow marbles does Sam now have ? ", + "Output Program": [ + "answer = 86 - 25\nprint(answer)" + ], + "Output Answer": [ + "61" + ], + "split": "test" + }, + { + "Input": "Professor Ellison weighed 2 pieces of metal for an experiment . The piece of iron weighed 11.166666666666666 pounds and the piece of aluminum weighed 0.8333333333333334 pound . How much more did the piece of iron weigh than the piece of aluminum ? ", + "Output Program": [ + "answer = 11.166666666666666 - 0.8333333333333334\nprint(answer)" + ], + "Output Answer": [ + "10.333333333333334" + ], + "split": "test" + }, + { + "Input": "Tom purchased a football game for $ 14.02 , a strategy game for $ 9.46 , and a Batman game for $ 12.04 . How much did Tom spend on video games ? ", + "Output Program": [ + "answer = 14.02 + 9.46 + 12.04\nprint(answer)" + ], + "Output Answer": [ + "35.52" + ], + "split": "test" + }, + { + "Input": "Jason grew 23 watermelons and 18 turnips . Nancy grew 28 watermelons . How many watermelons did they grow in total ? ", + "Output Program": [ + "answer = 23 + 28\nprint(answer)" + ], + "Output Answer": [ + "51" + ], + "split": "test" + }, + { + "Input": "There are 7.75 gallons of water in Becky 's fish tank . If Becky adds 7 gallons more , how many gallons will there be in all ? ", + "Output Program": [ + "answer = 7.75 + 7.0\nprint(answer)" + ], + "Output Answer": [ + "14.75" + ], + "split": "test" + }, + { + "Input": "Tori was 4.4 feet tall . Then she grew 2.86 feet taller . How tall is Tori now ? ", + "Output Program": [ + "answer = 4.4 + 2.86\nprint(answer)" + ], + "Output Answer": [ + "7.26" + ], + "split": "test" + }, + { + "Input": "Marta picked 2 pumpkins . The first pumpkin weighed 4 pounds , and the second pumpkin weighed 8.7 pounds . How much did the 2 pumpkins weigh all together ? ", + "Output Program": [ + "answer = 4.0 + 8.7\nprint(answer)" + ], + "Output Answer": [ + "12.7" + ], + "split": "test" + }, + { + "Input": "Before December , customers buy 1346 ear muffs from the mall . During December , they buy 6444 , and there are none . In all , how many ear muffs do the customers buy ? ", + "Output Program": [ + "answer = 1346.0 + 6444.0\nprint(answer)" + ], + "Output Answer": [ + "7790.0" + ], + "split": "test" + }, + { + "Input": "While making desserts for a bake sale , Victor used 0.625 scoop of brown sugar as well as 0.25 scoop of white sugar . How much more brown sugar did Victor use ? ", + "Output Program": [ + "answer = 0.625 - 0.25\nprint(answer)" + ], + "Output Answer": [ + "0.375" + ], + "split": "test" + }, + { + "Input": "There are 33 oak trees currently in the park . Park workers had to cut down 18 oak trees that were damaged . How many oak trees will be in the park when the workers are finished ? ", + "Output Program": [ + "answer = 33 - 18\nprint(answer)" + ], + "Output Answer": [ + "15" + ], + "split": "test" + }, + { + "Input": "Melanie bought a Batman game for $ 6.95 , a strategy game for $ 7.90 , and a Superman game for $ 7.73 . Melanie already owns 4 games . How much did Melanie spend on video games ? ", + "Output Program": [ + "answer = 6.95 + 7.90 + 7.73\nprint(answer)" + ], + "Output Answer": [ + "22.58" + ], + "split": "test" + }, + { + "Input": "Kendall is learning to drive , so this weekend she practiced driving 0.16666666666666666 mile with her mother and another 0.5 mile with her father . How far did Kendall drive in all ? ", + "Output Program": [ + "answer = 0.16666666666666666 + 0.5\nprint(answer)" + ], + "Output Answer": [ + "0.6666666666666666" + ], + "split": "test" + }, + { + "Input": "Kaleen filled a bucket with 0.75 gallon of water . A few minutes later , she realized only 0.5 gallon of water remained . How much water had leaked out of the bucket ? ", + "Output Program": [ + "answer = 0.75 - 0.5\nprint(answer)" + ], + "Output Answer": [ + "0.25" + ], + "split": "test" + }, + { + "Input": "Nicole found an orange caterpillar and a green caterpillar in her backyard . The green caterpillar was 3 inches long and the orange caterpillar was 1.1666666666666667 inches long . How much longer was the green caterpillar than the orange caterpillar ? ", + "Output Program": [ + "answer = 3.0 - 1.1666666666666667\nprint(answer)" + ], + "Output Answer": [ + "1.8333333333333335" + ], + "split": "test" + }, + { + "Input": "Sara has 31 red and 15 green balloons . Sandy has 24 red balloons . How many red balloons do they have in total ? ", + "Output Program": [ + "answer = 31 + 24\nprint(answer)" + ], + "Output Answer": [ + "55" + ], + "split": "test" + }, + { + "Input": "Mary had 33 Pokemon cards , and 6 were torn . Sam gave Mary 23 new Pokemon cards . How many Pokemon cards does Mary have now ? ", + "Output Program": [ + "answer = 33 + 23\nprint(answer)" + ], + "Output Answer": [ + "56" + ], + "split": "test" + }, + { + "Input": "Melanie had 30 baseball cards , and 9 were torn . Sara bought 18 of Melanie 's baseball cards . How many baseball cards does Melanie have now ? ", + "Output Program": [ + "answer = 30 - 18\nprint(answer)" + ], + "Output Answer": [ + "12" + ], + "split": "test" + }, + { + "Input": "Sam went to 14 football games this year . He went to 29 games last year . How many football games did Sam go to in all ? ", + "Output Program": [ + "answer = 14 + 29\nprint(answer)" + ], + "Output Answer": [ + "43" + ], + "split": "test" + }, + { + "Input": "A restaurant served 9 pizzas during lunch, and 6 during dinner today . How many pizzas were served today ? ", + "Output Program": [ + "answer = 9 + 6 \nprint(answer)" + ], + "Output Answer": [ + "15" + ], + "split": "test" + }, + { + "Input": "At Lindsey 's Vacation Wear , 0.375 the garments are bikinis and 0.25 are trunks . What fraction of the garments are either bikinis or trunks ? ", + "Output Program": [ + "answer = 0.375 + 0.25\nprint(answer)" + ], + "Output Answer": [ + "0.625" + ], + "split": "test" + }, + { + "Input": "Sara picked 45 pears, and Sally picked 11 pears from the pear tree . How many pears were picked in total ? ", + "Output Program": [ + "answer = 45 + 11\nprint(answer)" + ], + "Output Answer": [ + "56" + ], + "split": "test" + }, + { + "Input": "Allie counted the leftover ice cream after a sundae party . She had 0.3333333333333333 carton of rocky road ice cream , 0.3333333333333333 carton of cookie dough ice cream , and 0.16666666666666666 carton of strawberry cheesecake ice cream . How many cartons of ice cream did Allie have in all ? ", + "Output Program": [ + "answer = 0.3333333333333333 + 0.3333333333333333 + 0.16666666666666666\nprint(answer)" + ], + "Output Answer": [ + "0.8333333333333334" + ], + "split": "test" + }, + { + "Input": "Keith found 6 seashells , Jessica found 8 seashells , and Tim found 7 seashells on the beach . When they cleaned them , they discovered that 3 were cracked . How many seashells did they find together ? ", + "Output Program": [ + "answer = 6 + 8 + 7\nprint(answer)" + ], + "Output Answer": [ + "21" + ], + "split": "test" + }, + { + "Input": "Christina just transferred $ 69 out of her bank account . As a result , the account now has $ 26935 in it . How much money was in the account before the transfer ? ", + "Output Program": [ + "answer = 69.0 + 26935.0\nprint(answer)" + ], + "Output Answer": [ + "27004.0" + ], + "split": "test" + }, + { + "Input": "Jessica had 8 quarters in her bank . Her sister borrowed 3 of her quarters . How many quarters does Jessica have now ? ", + "Output Program": [ + "answer = 8 - 3\nprint(answer)" + ], + "Output Answer": [ + "5" + ], + "split": "test" + }, + { + "Input": "Sara got fast food for lunch . Sara spent $ 5.36 on a hotdog and $ 5.10 on a salad . What was the total of the lunch bill ? ", + "Output Program": [ + "answer = 5.36 + 5.10\nprint(answer)" + ], + "Output Answer": [ + "10.46" + ], + "split": "test" + }, + { + "Input": "Heather went to the county fair last weekend . When she got there , she had to walk 0.3333333333333333 mile from the car to the entrance . Then she walked 0.3333333333333333 mile to the carnival rides and 0.08333333333333333 mile from the carnival rides back to the car . How many miles did Heather walk in all ? ", + "Output Program": [ + "answer = 0.3333333333333333 + 0.3333333333333333 + 0.08333333333333333\nprint(answer)" + ], + "Output Answer": [ + "0.75" + ], + "split": "test" + }, + { + "Input": "There are 6 short bushes and 4 tall trees currently in the park . Park workers had to cut down 2 short bushes that were damaged . How many short bushes will the park have when the workers are finished ? ", + "Output Program": [ + "answer = 6 - 2\nprint(answer)" + ], + "Output Answer": [ + "4" + ], + "split": "test" + }, + { + "Input": "There are 5 scissors and 3 pencils in the drawer . Jason placed 4 scissors in the drawer . How many scissors are now there in total ? ", + "Output Program": [ + "answer = 5 + 4\nprint(answer)" + ], + "Output Answer": [ + "9" + ], + "split": "test" + }, + { + "Input": "Tom has 9 yellow balloons. Sara has 8 yellow balloons . How many yellow balloons do they have in total ? ", + "Output Program": [ + "answer = 9 + 8\nprint(answer)" + ], + "Output Answer": [ + "17" + ], + "split": "test" + }, + { + "Input": "This afternoon Craig left school , rode the bus 3.8333333333333335 miles , and then walked 0.16666666666666666 mile to get home . How much farther did Craig ride than walk ? ", + "Output Program": [ + "answer = 3.8333333333333335 - 0.16666666666666666\nprint(answer)" + ], + "Output Answer": [ + "3.6666666666666665" + ], + "split": "test" + }, + { + "Input": "There are 1986 books in Oak Grove 's public library . In addition , there are 5106 books in its school libraries . How many books do the libraries in Oak Grove have overall ? ", + "Output Program": [ + "answer = 1986.0 + 5106.0\nprint(answer)" + ], + "Output Answer": [ + "7092.0" + ], + "split": "test" + }, + { + "Input": "Jason has 18 books and he has read 9 of them . Mary has 42 books . How many books do they have together ? ", + "Output Program": [ + "answer = 18 + 42\nprint(answer)" + ], + "Output Answer": [ + "60" + ], + "split": "test" + }, + { + "Input": "Scarlett made a fruit salad with 0.25 pound of melon and 0.375 pound of berries . How many pounds of fruit did Scarlett use in all ? ", + "Output Program": [ + "answer = 0.25 + 0.375\nprint(answer)" + ], + "Output Answer": [ + "0.625" + ], + "split": "test" + }, + { + "Input": "Kyle jogged 1.125 laps in P.E. class and 2.125 laps during track practice . How many laps did Kyle jog in all ? ", + "Output Program": [ + "answer = 1.125 + 2.125\nprint(answer)" + ], + "Output Answer": [ + "3.25" + ], + "split": "test" + }, + { + "Input": "A bee colony produced 0.36 pounds of honey , but bears ate 0.05 pounds of it . How much honey remains ? ", + "Output Program": [ + "answer = 0.36 - 0.05\nprint(answer)" + ], + "Output Answer": [ + "0.31" + ], + "split": "test" + }, + { + "Input": "Greg and Sharon own neighboring cornfields . Greg harvested 0.4 acre of corn on Monday and Sharon harvested 0.1 acre . How many more acres did Greg harvest than Sharon ? ", + "Output Program": [ + "answer = 0.4 - 0.1\nprint(answer)" + ], + "Output Answer": [ + "0.3" + ], + "split": "test" + } + ], + "Metadata": [ + { + "Answer": "43", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "DEFAULT" + }, + "arg2": { + "name": "end", + "value": "27" + }, + "arg5": { + "name": "gain", + "value": [ + "70" + ] + }, + "arg4": { + "name": "loss", + "value": [ + "X" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "26", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "28" + }, + "arg2": { + "name": "end", + "value": "54" + }, + "arg5": { + "name": "gain", + "value": [ + "X" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "6", + "Explanation": [ + { + "arg3": { + "name": "end", + "value": "8" + }, + "arg2": { + "name": "start", + "value": "DEFAULT" + }, + "arg5": { + "name": "gain", + "value": [ + "2", + "X" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "8", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "12" + }, + "arg5": { + "name": "part", + "value": [ + "4", + "X" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "33", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "22" + }, + "arg2": { + "name": "end", + "value": "55" + }, + "arg5": { + "name": "gain", + "value": [ + "X" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "52", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "34" + }, + "arg2": { + "name": "end", + "value": "86" + }, + "arg5": { + "name": "gain", + "value": [ + "X" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "10", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "6" + }, + "arg2": { + "name": "end", + "value": "16" + }, + "arg5": { + "name": "gain", + "value": [ + "X" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "13", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "4", + "9" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "17", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "9", + "8" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "10", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "4" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "gain", + "value": [ + "6" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "16", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "9" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "gain", + "value": [ + "7" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "12", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "X" + }, + "arg2": { + "name": "end", + "value": "5" + }, + "arg5": { + "name": "loss", + "value": [ + "7" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "15", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "9", + "6" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "5", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "2" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "gain", + "value": [ + "3" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "14", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "6", + "8" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "9", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "6", + "3" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "11", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "2", + "9" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "21", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "9", + "7", + "5" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "18", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "X" + }, + "arg2": { + "name": "end", + "value": "9" + }, + "arg5": { + "name": "loss", + "value": [ + "3", + "6" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "16", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "9", + "5", + "2" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "19", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "7" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "gain", + "value": [ + "8", + "4" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "14", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "5", + "6", + "3" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "16", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "4", + "9", + "3" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "12", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "7" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "gain", + "value": [ + "3", + "2" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "18", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "4", + "5", + "9" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "67", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "43", + "24" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "65", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "18", + "47" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "51", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "23", + "28" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "25", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "11" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "gain", + "value": [ + "14" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "56", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "45", + "11" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "41", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "20", + "21" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "74", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "49" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "gain", + "value": [ + "25" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "58", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "15", + "43" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "55", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "31", + "24" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "47", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "37", + "10" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "47", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "36", + "11" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "60", + "Explanation": [ + { + "arg3": { + "name": "end", + "value": "X" + }, + "arg2": { + "name": "start", + "value": "33" + }, + "arg5": { + "name": "gain", + "value": [ + "27" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "63", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "24" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "gain", + "value": [ + "39" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "89", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "42", + "47" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "77", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "33" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "gain", + "value": [ + "44" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "70", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "21" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "gain", + "value": [ + "49" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "71", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "41" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "gain", + "value": [ + "30" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "48", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "10", + "38" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "81", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "40", + "41" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "82", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "38", + "44" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "43", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "14", + "29" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "59", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "18", + "41" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "100", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "39" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "gain", + "value": [ + "41", + "20" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "67", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "10", + "24", + "33" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "105", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "46", + "47", + "12" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "65", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "29", + "16", + "20" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "83", + "Explanation": [ + { + "arg3": { + "name": "end", + "value": "X" + }, + "arg2": { + "name": "start", + "value": "19" + }, + "arg5": { + "name": "gain", + "value": [ + "39", + "25" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "104", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "37", + "28", + "39" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "88", + "Explanation": [ + { + "arg3": { + "name": "end", + "value": "X" + }, + "arg2": { + "name": "start", + "value": "27" + }, + "arg5": { + "name": "gain", + "value": [ + "41", + "20" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "44", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "11", + "17", + "16" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "21", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "35" + }, + "arg2": { + "name": "end", + "value": "56" + }, + "arg5": { + "name": "gain", + "value": [ + "X" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "11", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "53" + }, + "arg2": { + "name": "end", + "value": "64" + }, + "arg5": { + "name": "gain", + "value": [ + "X" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "34", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "DEFAULT" + }, + "arg2": { + "name": "end", + "value": "22" + }, + "arg5": { + "name": "loss", + "value": [ + "X" + ] + }, + "arg4": { + "name": "gain", + "value": [ + "56" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "42", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "13" + }, + "arg2": { + "name": "end", + "value": "55" + }, + "arg5": { + "name": "gain", + "value": [ + "X" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "34", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "DEFAULT" + }, + "arg2": { + "name": "end", + "value": "33" + }, + "arg5": { + "name": "loss", + "value": [ + "X" + ] + }, + "arg4": { + "name": "gain", + "value": [ + "67" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "11", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "3" + }, + "arg2": { + "name": "end", + "value": "14" + }, + "arg5": { + "name": "gain", + "value": [ + "X" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "12", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "74" + }, + "arg2": { + "name": "end", + "value": "86" + }, + "arg5": { + "name": "gain", + "value": [ + "X" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "23", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "73" + }, + "arg2": { + "name": "end", + "value": "96" + }, + "arg5": { + "name": "gain", + "value": [ + "X" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "13", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "6", + "7" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "12", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "9" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "gain", + "value": [ + "3" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "9", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "5" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "gain", + "value": [ + "4" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "3", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "7" + }, + "arg5": { + "name": "part", + "value": [ + "4", + "X" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "16", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "7", + "9" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "15", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "6", + "9" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "6", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "8" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "loss", + "value": [ + "2" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "4", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "7" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "", + "value": [] + }, + "arg4": { + "name": "loss", + "value": [ + "3" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "6", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "8" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "loss", + "value": [ + "2" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "83", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "34" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "gain", + "value": [ + "49" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "72", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "27" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "gain", + "value": [ + "45" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "17", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "DEFAULT" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "gain", + "value": [ + "35" + ] + }, + "arg4": { + "name": "loss", + "value": [ + "18" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "42", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "22", + "20" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "74", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "87" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "loss", + "value": [ + "13" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "74", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "51", + "23" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "96", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "44", + "52" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "50", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "64" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "loss", + "value": [ + "14" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "98", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "25" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "gain", + "value": [ + "73" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "76", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "54" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "gain", + "value": [ + "22" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "59", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "42", + "17" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "5", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "98" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "loss", + "value": [ + "93" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "16", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "DEFAULT" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "gain", + "value": [ + "79" + ] + }, + "arg4": { + "name": "loss", + "value": [ + "63" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "212", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "110", + "102" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "227", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "122", + "105" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "342", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "760" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "loss", + "value": [ + "418" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "252", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "139", + "113" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "452", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "676" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "loss", + "value": [ + "224" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "211", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "107" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "gain", + "value": [ + "104" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "488", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "709" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "loss", + "value": [ + "221" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "215", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "115" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "gain", + "value": [ + "100" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "1", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "3" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "loss", + "value": [ + "2" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "4", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "8" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "loss", + "value": [ + "4" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "3", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "5" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "loss", + "value": [ + "2" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "6", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "2" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "gain", + "value": [ + "4" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "11", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "6", + "5" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "1", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "DEFAULT" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg4": { + "name": "gain", + "value": [ + "4" + ] + }, + "arg5": { + "name": "loss", + "value": [ + "3" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "13", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "X" + }, + "arg2": { + "name": "end", + "value": "4" + }, + "arg5": { + "name": "loss", + "value": [ + "9" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "12", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "7" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "gain", + "value": [ + "5" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "15", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "6", + "9" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "12", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "9", + "3" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "10", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "6", + "4" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "3", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "DEFAULT" + }, + "arg1": { + "name": "gain", + "value": [ + "5" + ] + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "loss", + "value": [ + "2" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "2", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "5" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "loss", + "value": [ + "3" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "5", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "8" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "loss", + "value": [ + "3" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "7", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "9" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "loss", + "value": [ + "2" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "5", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "8" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "loss", + "value": [ + "3" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "6", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "DEFAULT" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "loss", + "value": [ + "3" + ] + }, + "arg4": { + "name": "gain", + "value": [ + "9" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "4", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "7" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "loss", + "value": [ + "3" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "5", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "DEFAULT" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "loss", + "value": [ + "4" + ] + }, + "arg4": { + "name": "gain", + "value": [ + "9" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "7", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "9" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "loss", + "value": [ + "2" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "16", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "DEFAULT" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "gain", + "value": [ + "43" + ] + }, + "arg4": { + "name": "loss", + "value": [ + "27" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "14", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "30" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "loss", + "value": [ + "16" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "18", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "40" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "loss", + "value": [ + "22" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "22", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "47" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "loss", + "value": [ + "25" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "20", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "DEFAULT" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "gain", + "value": [ + "43" + ] + }, + "arg4": { + "name": "loss", + "value": [ + "23" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "7", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "DEFAULT" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "gain", + "value": [ + "33" + ] + }, + "arg4": { + "name": "loss", + "value": [ + "26" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "21", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "46" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "loss", + "value": [ + "25" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "15", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "33" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "loss", + "value": [ + "18" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "9.43", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "5.20", + "4.23" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "151", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "145.16", + "5.84" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "12.3", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "5.71", + "6.59" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "21.95", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "10.22", + "11.73" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "10.46", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "5.36", + "5.10" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "19.02", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "14.28", + "4.74" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "21.93", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "12.08", + "9.85" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "34.72", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "11.08", + "14.33", + "9.31" + ] + }, + "arg4": { + "name": "", + "value": [] + }, + "type": "CB" + } + ] + }, + { + "Answer": "33.56", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "13.99", + "12.14", + "7.43" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "158.35", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "142.46", + "8.89", + "7" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "35.52", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "14.02", + "9.46", + "12.04" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "20.52", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "9.05", + "4.95", + "6.52" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "14696.0", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "DEFAULT" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "gain", + "value": [ + "5973", + "8723" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "7790.0", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "1346", + "6444" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "8564.0", + "Explanation": [ + { + "arg3": { + "name": "large", + "value": "X" + }, + "arg2": { + "name": "small", + "value": "2479" + }, + "arg1": { + "name": "diff", + "value": "6085" + }, + "type": "CP" + } + ] + }, + { + "Answer": "11687.0", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "6522", + "5165" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "6755.0", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg4": { + "name": "part", + "value": [ + "3884", + "2871" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "9844.0", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "6359", + "3485" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "7092.0", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "1986", + "5106" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "118558.0", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "20817" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "gain", + "value": [ + "97741" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "48781.0", + "Explanation": [ + { + "arg3": { + "name": "small", + "value": "48097" + }, + "arg2": { + "name": "diff", + "value": "684" + }, + "arg1": { + "name": "large", + "value": "X" + }, + "type": "CP" + } + ] + }, + { + "Answer": "27004.0", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "X" + }, + "arg2": { + "name": "end", + "value": "26935" + }, + "arg5": { + "name": "loss", + "value": [ + "69" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "14720.0", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "14507", + "213" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "64013.0", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "522", + "X" + ] + }, + "arg1": { + "name": "whole", + "value": "64535" + }, + "type": "CB" + } + ] + }, + { + "Answer": "67082.0", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "12170", + "54912" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "106491.0", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "90171", + "16320" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "50870.0", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "X" + }, + "arg2": { + "name": "end", + "value": "918" + }, + "arg5": { + "name": "loss", + "value": [ + "49952" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "111421.0", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "61921", + "49500" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "65134.0", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "2041", + "63093" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "971639.0", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "712261", + "259378" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "19766.0", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "14797", + "4969" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "574.0", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [ + "X" + ] + }, + "arg2": { + "name": "loss", + "value": [] + }, + "arg4": { + "name": "end", + "value": "2000" + }, + "arg1": { + "name": "start", + "value": "1426" + }, + "type": "CH" + } + ] + }, + { + "Answer": "3120.0", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "7341" + }, + "arg5": { + "name": "part", + "value": [ + "4221", + "X" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "6279.0", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "9792" + }, + "arg5": { + "name": "part", + "value": [ + "X", + "3513" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "1460.0", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [] + }, + "arg2": { + "name": "loss", + "value": [ + "12" + ] + }, + "arg4": { + "name": "end", + "value": "X" + }, + "arg1": { + "name": "start", + "value": "1472" + }, + "type": "CH" + } + ] + }, + { + "Answer": "5703.0", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "9570" + }, + "arg5": { + "name": "part", + "value": [ + "3867", + "X" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "8317.0", + "Explanation": [ + { + "arg3": { + "name": "small", + "value": "600" + }, + "arg2": { + "name": "diff", + "value": "X" + }, + "arg1": { + "name": "large", + "value": "8917" + }, + "type": "CP" + } + ] + }, + { + "Answer": "1232.0", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "344", + "X" + ] + }, + "arg1": { + "name": "whole", + "value": "1576" + }, + "type": "CB" + } + ] + }, + { + "Answer": "523.0", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "816", + "X" + ] + }, + "arg1": { + "name": "whole", + "value": "1339" + }, + "type": "CB" + } + ] + }, + { + "Answer": "5855.0", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "193", + "X" + ] + }, + "arg1": { + "name": "whole", + "value": "6048" + }, + "type": "CB" + } + ] + }, + { + "Answer": "2515.0", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "9437" + }, + "arg5": { + "name": "part", + "value": [ + "6922", + "X" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "6029.0", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "660", + "X" + ] + }, + "arg1": { + "name": "whole", + "value": "6689" + }, + "type": "CB" + } + ] + }, + { + "Answer": "5935.0", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "2647", + "X" + ] + }, + "arg1": { + "name": "whole", + "value": "8582" + }, + "type": "CB" + } + ] + }, + { + "Answer": "6699.0", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "723", + "X" + ] + }, + "arg1": { + "name": "whole", + "value": "7422" + }, + "type": "CB" + } + ] + }, + { + "Answer": "3220.0", + "Explanation": [ + { + "arg3": { + "name": "small", + "value": "1416" + }, + "arg2": { + "name": "diff", + "value": "X" + }, + "arg1": { + "name": "large", + "value": "4636" + }, + "type": "CP" + } + ] + }, + { + "Answer": "3731.0", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "2475", + "X" + ] + }, + "arg1": { + "name": "whole", + "value": "6206" + }, + "type": "CB" + } + ] + }, + { + "Answer": "5110.0", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "45", + "X" + ] + }, + "arg1": { + "name": "whole", + "value": "5155" + }, + "type": "CB" + } + ] + }, + { + "Answer": "1792.0", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "4518", + "X" + ] + }, + "arg1": { + "name": "whole", + "value": "6310" + }, + "type": "CB" + } + ] + }, + { + "Answer": "2713.0", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "5816" + }, + "arg2": { + "name": "part", + "value": [ + "3103", + "X" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "4133.0", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "805", + "X" + ] + }, + "arg1": { + "name": "whole", + "value": "4938" + }, + "type": "CB" + } + ] + }, + { + "Answer": "2454.0", + "Explanation": [ + { + "arg3": { + "name": "small", + "value": "809" + }, + "arg2": { + "name": "diff", + "value": "X" + }, + "arg1": { + "name": "large", + "value": "3263" + }, + "type": "CP" + } + ] + }, + { + "Answer": "0.5", + "Explanation": [ + { + "arg3": { + "name": "small", + "value": "0.25" + }, + "arg2": { + "name": "diff", + "value": "X" + }, + "arg1": { + "name": "large", + "value": "0.75" + }, + "type": "CP" + } + ] + }, + { + "Answer": "0.5", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "0.25", + "0.25" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "0.6666666666666666", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "0.16666666666666666", + "0.5" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "0.3333333333333333", + "Explanation": [ + { + "arg3": { + "name": "small", + "value": "0.3333333333333333" + }, + "arg2": { + "name": "diff", + "value": "X" + }, + "arg1": { + "name": "large", + "value": "0.6666666666666666" + }, + "type": "CP" + } + ] + }, + { + "Answer": "0.25", + "Explanation": [ + { + "arg3": { + "name": "small", + "value": "0.5" + }, + "arg2": { + "name": "diff", + "value": "X" + }, + "arg1": { + "name": "large", + "value": "0.75" + }, + "type": "CP" + } + ] + }, + { + "Answer": "0.625", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg4": { + "name": "part", + "value": [ + "0.375", + "0.25" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "0.125", + "Explanation": [ + { + "arg3": { + "name": "small", + "value": "0.75" + }, + "arg2": { + "name": "diff", + "value": "X" + }, + "arg1": { + "name": "large", + "value": "0.875" + }, + "type": "CP" + } + ] + }, + { + "Answer": "0.1", + "Explanation": [ + { + "arg3": { + "name": "small", + "value": "0.2" + }, + "arg2": { + "name": "diff", + "value": "X" + }, + "arg1": { + "name": "large", + "value": "0.3" + }, + "type": "CP" + } + ] + }, + { + "Answer": "0.6666666666666666", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "0.3333333333333333", + "0.3333333333333333" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "0.25", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "0.125", + "0.125" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "0.6", + "Explanation": [ + { + "arg0": { + "name": "loss", + "value": [ + "0.2" + ] + }, + "arg2": { + "name": "gain", + "value": [ + "0.8" + ] + }, + "arg1": { + "name": "start", + "value": "DEFAULT" + }, + "arg3": { + "name": "end", + "value": "X" + }, + "type": "CH" + } + ] + }, + { + "Answer": "0.16666666666666666", + "Explanation": [ + { + "arg3": { + "name": "small", + "value": "0.5" + }, + "arg2": { + "name": "diff", + "value": "X" + }, + "arg1": { + "name": "large", + "value": "0.6666666666666666" + }, + "type": "CP" + } + ] + }, + { + "Answer": "0.8", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "0.6", + "0.2" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "0.9", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "0.7", + "0.2" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "0.8333333333333334", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "0.16666666666666666" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "gain", + "value": [ + "0.6666666666666666" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "0.6", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg2": { + "name": "", + "value": "" + }, + "arg4": { + "name": "part", + "value": [ + "0.2", + "0.4" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "0.2", + "Explanation": [ + { + "arg3": { + "name": "small", + "value": "0.2" + }, + "arg2": { + "name": "diff", + "value": "X" + }, + "arg1": { + "name": "large", + "value": "0.4" + }, + "type": "CP" + } + ] + }, + { + "Answer": "0.375", + "Explanation": [ + { + "arg3": { + "name": "small", + "value": "0.25" + }, + "arg2": { + "name": "diff", + "value": "X" + }, + "arg1": { + "name": "large", + "value": "0.625" + }, + "type": "CP" + } + ] + }, + { + "Answer": "0.6", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "0.2", + "0.4" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "0.2", + "Explanation": [ + { + "arg3": { + "name": "small", + "value": "0.4" + }, + "arg2": { + "name": "diff", + "value": "X" + }, + "arg1": { + "name": "large", + "value": "0.6" + }, + "type": "CP" + } + ] + }, + { + "Answer": "0.625", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "0.5", + "0.125" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "0.7", + "Explanation": [ + { + "arg3": { + "name": "large", + "value": "0.8" + }, + "arg2": { + "name": "small", + "value": "0.1" + }, + "arg1": { + "name": "diff", + "value": "X" + }, + "type": "CP" + } + ] + }, + { + "Answer": "0.625", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg4": { + "name": "part", + "value": [ + "0.25", + "0.375" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "0.125", + "Explanation": [ + { + "arg3": { + "name": "small", + "value": "0.5" + }, + "arg2": { + "name": "diff", + "value": "X" + }, + "arg1": { + "name": "large", + "value": "0.625" + }, + "type": "CP" + } + ] + }, + { + "Answer": "0.6", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "0.5", + "0.1" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "0.875", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "0.375", + "0.5" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "0.5", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "0.16666666666666666", + "0.3333333333333333" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "0.3333333333333333", + "Explanation": [ + { + "arg3": { + "name": "small", + "value": "0.5" + }, + "arg2": { + "name": "diff", + "value": "X" + }, + "arg1": { + "name": "large", + "value": "0.8333333333333334" + }, + "type": "CP" + } + ] + }, + { + "Answer": "0.3333333333333333", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "0.16666666666666666", + "X" + ] + }, + "arg1": { + "name": "whole", + "value": "0.5" + }, + "type": "CB" + } + ] + }, + { + "Answer": "0.1", + "Explanation": [ + { + "arg3": { + "name": "small", + "value": "0.3" + }, + "arg2": { + "name": "diff", + "value": "X" + }, + "arg1": { + "name": "large", + "value": "0.4" + }, + "type": "CP" + } + ] + }, + { + "Answer": "0.9", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "0.2", + "0.7" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "0.3", + "Explanation": [ + { + "arg3": { + "name": "small", + "value": "0.1" + }, + "arg2": { + "name": "diff", + "value": "X" + }, + "arg1": { + "name": "large", + "value": "0.4" + }, + "type": "CP" + } + ] + }, + { + "Answer": "0.75", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg4": { + "name": "part", + "value": [ + "0.25", + "0.5" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "0.375", + "Explanation": [ + { + "arg3": { + "name": "small", + "value": "0.25" + }, + "arg2": { + "name": "diff", + "value": "X" + }, + "arg1": { + "name": "large", + "value": "0.625" + }, + "type": "CP" + } + ] + }, + { + "Answer": "0.1", + "Explanation": [ + { + "arg3": { + "name": "small", + "value": "0.6" + }, + "arg2": { + "name": "diff", + "value": "X" + }, + "arg1": { + "name": "large", + "value": "0.7" + }, + "type": "CP" + } + ] + }, + { + "Answer": "0.7", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "0.3", + "0.4" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "0.4", + "Explanation": [ + { + "arg3": { + "name": "large", + "value": "0.9" + }, + "arg2": { + "name": "small", + "value": "0.5" + }, + "arg1": { + "name": "diff", + "value": "X" + }, + "type": "CP" + } + ] + }, + { + "Answer": "0.625", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "0.125", + "0.5" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "0.3", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "0.2", + "0.1" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "0.25", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "0.5", + "X" + ] + }, + "arg1": { + "name": "whole", + "value": "0.75" + }, + "type": "CB" + } + ] + }, + { + "Answer": "0.7", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "0.2", + "0.4", + "0.1" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "0.6666666666666666", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "0.16666666666666666", + "0.16666666666666666", + "0.3333333333333333" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "0.875", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "0.25", + "0.25", + "0.375" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "0.9166666666666666", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "0.08333333333333333", + "0.75", + "0.08333333333333333" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "0.8888888888888888", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "0.1111111111111111", + "0.1111111111111111", + "0.6666666666666666" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "0.4166666666666667", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "0.16666666666666666", + "0.16666666666666666", + "0.08333333333333333" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "0.8333333333333334", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "0.3333333333333333", + "0.3333333333333333", + "0.16666666666666666" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "0.75", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "0.125", + "0.125", + "0.5" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "0.75", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "0.3333333333333333", + "0.3333333333333333", + "0.08333333333333333" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "0.8333333333333334", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "0.08333333333333333", + "0.08333333333333333", + "0.6666666666666666" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "0.6666666666666666", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "0.16666666666666666", + "0.4166666666666667", + "0.08333333333333333" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "0.8", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "0.3", + "0.1", + "0.4" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "0.8333333333333334", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "0.16666666666666666", + "0.16666666666666666", + "0.5" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "0.75", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "0.25", + "0.375", + "0.125" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "0.7", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "0.5", + "0.1", + "0.1" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "0.8888888888888888", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg2": { + "name": "part", + "value": [ + "0.3333333333333333", + "0.3333333333333333", + "0.2222222222222222" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "0.5", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "0.2", + "0.1", + "0.2" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "0.9166666666666666", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "0.25", + "0.4166666666666667", + "0.25" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "0.75", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "0.3333333333333333", + "0.3333333333333333", + "0.08333333333333333" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "0.6666666666666666", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "0.16666666666666666", + "0.3333333333333333", + "0.16666666666666666" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "0.8333333333333334", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "0.08333333333333333", + "0.3333333333333333", + "0.4166666666666667" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "1.3333333333333333", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "0.16666666666666666", + "1.1666666666666667" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "5.666666666666667", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "2.8333333333333335", + "2.8333333333333335" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "3.6666666666666665", + "Explanation": [ + { + "arg3": { + "name": "small", + "value": "0.16666666666666666" + }, + "arg2": { + "name": "diff", + "value": "X" + }, + "arg1": { + "name": "large", + "value": "3.8333333333333335" + }, + "type": "CP" + } + ] + }, + { + "Answer": "6.5", + "Explanation": [ + { + "arg3": { + "name": "small", + "value": "0.625" + }, + "arg2": { + "name": "diff", + "value": "X" + }, + "arg1": { + "name": "large", + "value": "7.125" + }, + "type": "CP" + } + ] + }, + { + "Answer": "15.1", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "10", + "5.1" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "9.8", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "1", + "8.8" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "3.25", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "1.125", + "2.125" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "9.8", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "3" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "gain", + "value": [ + "6.8" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "5.333333333333333", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "2.6666666666666665", + "2.6666666666666665" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "10.333333333333334", + "Explanation": [ + { + "arg3": { + "name": "small", + "value": "0.8333333333333334" + }, + "arg2": { + "name": "diff", + "value": "X" + }, + "arg1": { + "name": "large", + "value": "11.166666666666666" + }, + "type": "CP" + } + ] + }, + { + "Answer": "6.5", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "1.25", + "5.25" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "18.8", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "10.2", + "8.6" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "1.3333333333333333", + "Explanation": [ + { + "arg3": { + "name": "small", + "value": "2.3333333333333335" + }, + "arg2": { + "name": "diff", + "value": "X" + }, + "arg1": { + "name": "large", + "value": "3.6666666666666665" + }, + "type": "CP" + } + ] + }, + { + "Answer": "1.8333333333333335", + "Explanation": [ + { + "arg3": { + "name": "large", + "value": "3" + }, + "arg2": { + "name": "small", + "value": "1.1666666666666667" + }, + "arg1": { + "name": "diff", + "value": "X" + }, + "type": "CP" + } + ] + }, + { + "Answer": "3.5", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "3.25", + "0.25" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "2.75", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "6", + "X" + ] + }, + "arg1": { + "name": "whole", + "value": "8.75" + }, + "type": "CB" + } + ] + }, + { + "Answer": "1.3333333333333333", + "Explanation": [ + { + "arg3": { + "name": "small", + "value": "1" + }, + "arg2": { + "name": "diff", + "value": "X" + }, + "arg1": { + "name": "large", + "value": "2.3333333333333335" + }, + "type": "CP" + } + ] + }, + { + "Answer": "4.333333333333333", + "Explanation": [ + { + "arg3": { + "name": "small", + "value": "3.3333333333333335" + }, + "arg2": { + "name": "diff", + "value": "X" + }, + "arg1": { + "name": "large", + "value": "7.666666666666667" + }, + "type": "CP" + } + ] + }, + { + "Answer": "14.75", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "7.75" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "gain", + "value": [ + "7" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "10.666666666666666", + "Explanation": [ + { + "arg3": { + "name": "small", + "value": "9.166666666666666" + }, + "arg2": { + "name": "diff", + "value": "X" + }, + "arg1": { + "name": "large", + "value": "19.833333333333332" + }, + "type": "CP" + } + ] + }, + { + "Answer": "0.2", + "Explanation": [ + { + "arg3": { + "name": "small", + "value": "0.4" + }, + "arg2": { + "name": "diff", + "value": "X" + }, + "arg1": { + "name": "large", + "value": "0.6" + }, + "type": "CP" + } + ] + }, + { + "Answer": "9.8", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "8.2", + "1.6" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "0.08", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [] + }, + "arg2": { + "name": "loss", + "value": [ + "0.33" + ] + }, + "arg4": { + "name": "end", + "value": "X" + }, + "arg1": { + "name": "start", + "value": "0.41" + }, + "type": "CH" + } + ] + }, + { + "Answer": "0.5", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "0.1", + "0.4" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "14.02", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "9.91", + "4.11" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "0.46", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "0.35", + "X" + ] + }, + "arg1": { + "name": "whole", + "value": "0.81" + }, + "type": "CB" + } + ] + }, + { + "Answer": "9.12", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "6", + "3.12" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "0.31", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "0.05", + "X" + ] + }, + "arg1": { + "name": "whole", + "value": "0.36" + }, + "type": "CB" + } + ] + }, + { + "Answer": "0.2", + "Explanation": [ + { + "arg3": { + "name": "small", + "value": "X" + }, + "arg2": { + "name": "diff", + "value": "0.7" + }, + "arg1": { + "name": "large", + "value": "0.9" + }, + "type": "CP" + } + ] + }, + { + "Answer": "0.53", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "0.32", + "0.21" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "0.09", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "0.16", + "X" + ] + }, + "arg1": { + "name": "whole", + "value": "0.25" + }, + "type": "CB" + } + ] + }, + { + "Answer": "14.02", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "5.91", + "8.11" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "0.6", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "0.2", + "0.4" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "4.6", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "5.2", + "X" + ] + }, + "arg1": { + "name": "whole", + "value": "9.8" + }, + "type": "CB" + } + ] + }, + { + "Answer": "1.22", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "2.2", + "X" + ] + }, + "arg1": { + "name": "whole", + "value": "3.42" + }, + "type": "CB" + } + ] + }, + { + "Answer": "0.52", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "0.14", + "0.38" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "12.7", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "4", + "8.7" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "1.7", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "2.4", + "X" + ] + }, + "arg1": { + "name": "whole", + "value": "4.1" + }, + "type": "CB" + } + ] + }, + { + "Answer": "7.26", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "4.4" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "gain", + "value": [ + "2.86" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "6.6", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [] + }, + "arg2": { + "name": "loss", + "value": [ + "2.3" + ] + }, + "arg4": { + "name": "end", + "value": "X" + }, + "arg1": { + "name": "start", + "value": "8.9" + }, + "type": "CH" + } + ] + }, + { + "Answer": "36", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [ + "49" + ] + }, + "arg2": { + "name": "loss", + "value": [ + "13" + ] + }, + "arg4": { + "name": "end", + "value": "X" + }, + "arg1": { + "name": "start", + "value": "DEFAULT" + }, + "type": "CH" + } + ] + }, + { + "Answer": "40", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "29", + "11" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "15", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "39" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "loss", + "value": [ + "24" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "9", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "23", + "X" + ] + }, + "arg1": { + "name": "whole", + "value": "32" + }, + "type": "CB" + } + ] + }, + { + "Answer": "60", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "18", + "9" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "63", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "32", + "31" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "14", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [ + "66" + ] + }, + "arg2": { + "name": "loss", + "value": [ + "52" + ] + }, + "arg4": { + "name": "end", + "value": "X" + }, + "arg1": { + "name": "start", + "value": "DEFAULT" + }, + "type": "CH" + } + ] + }, + { + "Answer": "53", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [ + "12" + ] + }, + "arg2": { + "name": "loss", + "value": [] + }, + "arg4": { + "name": "end", + "value": "X" + }, + "arg1": { + "name": "start", + "value": "41" + }, + "type": "CH" + } + ] + }, + { + "Answer": "12", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "87" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "loss", + "value": [ + "75" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "61", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [] + }, + "arg2": { + "name": "loss", + "value": [ + "25" + ] + }, + "arg4": { + "name": "end", + "value": "X" + }, + "arg1": { + "name": "start", + "value": "86" + }, + "type": "CH" + } + ] + }, + { + "Answer": "82", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "97" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "loss", + "value": [ + "15" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "98", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [ + "57" + ] + }, + "arg2": { + "name": "loss", + "value": [] + }, + "arg4": { + "name": "end", + "value": "X" + }, + "arg1": { + "name": "start", + "value": "41" + }, + "type": "CH" + } + ] + }, + { + "Answer": "57", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "25", + "32" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "507", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [ + "679" + ] + }, + "arg2": { + "name": "loss", + "value": [ + "172" + ] + }, + "arg4": { + "name": "end", + "value": "X" + }, + "arg1": { + "name": "start", + "value": "DEFAULT" + }, + "type": "CH" + } + ] + }, + { + "Answer": "270", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [ + "131" + ] + }, + "arg2": { + "name": "loss", + "value": [] + }, + "arg4": { + "name": "end", + "value": "X" + }, + "arg1": { + "name": "start", + "value": "139" + }, + "type": "CH" + } + ] + }, + { + "Answer": "227", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "123", + "104" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "562", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "695" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "loss", + "value": [ + "133" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "242", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "113", + "129" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "559", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [] + }, + "arg2": { + "name": "loss", + "value": [ + "233" + ] + }, + "arg4": { + "name": "end", + "value": "X" + }, + "arg1": { + "name": "start", + "value": "792" + }, + "type": "CH" + } + ] + }, + { + "Answer": "469", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "864" + }, + "arg5": { + "name": "part", + "value": [ + "395", + "X" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "217", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [ + "105" + ] + }, + "arg2": { + "name": "loss", + "value": [] + }, + "arg4": { + "name": "end", + "value": "X" + }, + "arg1": { + "name": "start", + "value": "112" + }, + "type": "CH" + } + ] + }, + { + "Answer": "512", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [] + }, + "arg2": { + "name": "loss", + "value": [ + "271" + ] + }, + "arg4": { + "name": "end", + "value": "X" + }, + "arg1": { + "name": "start", + "value": "783" + }, + "type": "CH" + } + ] + }, + { + "Answer": "6", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "9" + }, + "arg5": { + "name": "part", + "value": [ + "3", + "X" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "4", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [ + "7" + ] + }, + "arg2": { + "name": "loss", + "value": [ + "3" + ] + }, + "arg4": { + "name": "end", + "value": "X" + }, + "arg1": { + "name": "start", + "value": "DEFAULT" + }, + "type": "CH" + } + ] + }, + { + "Answer": "4", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "6" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "loss", + "value": [ + "2" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "4", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "8" + }, + "arg5": { + "name": "part", + "value": [ + "4", + "X" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "5", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [] + }, + "arg2": { + "name": "loss", + "value": [ + "4" + ] + }, + "arg4": { + "name": "end", + "value": "X" + }, + "arg1": { + "name": "start", + "value": "9" + }, + "type": "CH" + } + ] + }, + { + "Answer": "4", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [] + }, + "arg2": { + "name": "loss", + "value": [ + "3" + ] + }, + "arg4": { + "name": "end", + "value": "X" + }, + "arg1": { + "name": "start", + "value": "7" + }, + "type": "CH" + } + ] + }, + { + "Answer": "3", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [] + }, + "arg2": { + "name": "loss", + "value": [ + "4" + ] + }, + "arg4": { + "name": "end", + "value": "X" + }, + "arg1": { + "name": "start", + "value": "7" + }, + "type": "CH" + } + ] + }, + { + "Answer": "4", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [] + }, + "arg2": { + "name": "loss", + "value": [ + "4" + ] + }, + "arg4": { + "name": "end", + "value": "X" + }, + "arg1": { + "name": "start", + "value": "8" + }, + "type": "CH" + } + ] + }, + { + "Answer": "4", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "8" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "loss", + "value": [ + "4" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "2", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "4", + "X" + ] + }, + "arg1": { + "name": "whole", + "value": "6" + }, + "type": "CB" + } + ] + }, + { + "Answer": "12", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "30" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "loss", + "value": [ + "18" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "7", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [ + "35" + ] + }, + "arg2": { + "name": "loss", + "value": [ + "28" + ] + }, + "arg4": { + "name": "end", + "value": "X" + }, + "arg1": { + "name": "start", + "value": "DEFAULT" + }, + "type": "CH" + } + ] + }, + { + "Answer": "8", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [ + "35" + ] + }, + "arg2": { + "name": "loss", + "value": [ + "27" + ] + }, + "arg4": { + "name": "end", + "value": "X" + }, + "arg1": { + "name": "start", + "value": "DEFAULT" + }, + "type": "CH" + } + ] + }, + { + "Answer": "18", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [ + "35" + ] + }, + "arg2": { + "name": "loss", + "value": [ + "17" + ] + }, + "arg4": { + "name": "end", + "value": "X" + }, + "arg1": { + "name": "start", + "value": "DEFAULT" + }, + "type": "CH" + } + ] + }, + { + "Answer": "23", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [] + }, + "arg2": { + "name": "loss", + "value": [ + "24" + ] + }, + "arg4": { + "name": "end", + "value": "X" + }, + "arg1": { + "name": "start", + "value": "47" + }, + "type": "CH" + } + ] + }, + { + "Answer": "29", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "42" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "loss", + "value": [ + "13" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "11", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [] + }, + "arg2": { + "name": "loss", + "value": [ + "20" + ] + }, + "arg4": { + "name": "end", + "value": "X" + }, + "arg1": { + "name": "start", + "value": "31" + }, + "type": "CH" + } + ] + }, + { + "Answer": "12", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [] + }, + "arg2": { + "name": "loss", + "value": [ + "22" + ] + }, + "arg4": { + "name": "end", + "value": "X" + }, + "arg1": { + "name": "start", + "value": "34" + }, + "type": "CH" + } + ] + }, + { + "Answer": "23.86", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "12.32", + "11.54" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "26.3", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "11.76", + "14.54" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "25.31", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "13.04", + "12.27" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "141.54", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "130.30", + "11.24" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "19.02", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "9.46", + "9.56" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "5.88", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "1.08", + "4.80" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "224.87", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "118.54", + "106.33" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "18.66", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "13.60", + "5.06" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "42.33", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "15", + "14.82", + "12.51" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "163.28", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "149.16", + "9.98", + "4.14" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "22.58", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "6.95", + "7.90", + "7.73" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "24.81", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "6.51", + "5.79", + "12.51" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "387.85", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "136.01", + "139.38", + "112.46" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "25.62", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "14.88", + "4.88", + "5.86" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "58", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "X" + }, + "arg2": { + "name": "end", + "value": "52" + }, + "arg5": { + "name": "loss", + "value": [ + "6" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "14", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [ + "X" + ] + }, + "arg2": { + "name": "loss", + "value": [] + }, + "arg4": { + "name": "end", + "value": "60" + }, + "arg1": { + "name": "start", + "value": "46" + }, + "type": "CH" + } + ] + }, + { + "Answer": "5", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "DEFAULT" + }, + "arg2": { + "name": "end", + "value": "7" + }, + "arg5": { + "name": "gain", + "value": [ + "2", + "X" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "63", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [ + "X" + ] + }, + "arg2": { + "name": "loss", + "value": [] + }, + "arg4": { + "name": "end", + "value": "86" + }, + "arg1": { + "name": "start", + "value": "23" + }, + "type": "CH" + } + ] + }, + { + "Answer": "64", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "31" + }, + "arg2": { + "name": "end", + "value": "95" + }, + "arg5": { + "name": "gain", + "value": [ + "X" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "6", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [ + "X" + ] + }, + "arg2": { + "name": "loss", + "value": [] + }, + "arg4": { + "name": "end", + "value": "15" + }, + "arg1": { + "name": "start", + "value": "9" + }, + "type": "CH" + } + ] + }, + { + "Answer": "37", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "24" + }, + "arg2": { + "name": "end", + "value": "61" + }, + "arg5": { + "name": "gain", + "value": [ + "X" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "44", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [ + "72" + ] + }, + "arg2": { + "name": "loss", + "value": [ + "X" + ] + }, + "arg4": { + "name": "end", + "value": "28" + }, + "arg1": { + "name": "start", + "value": "DEFAULT" + }, + "type": "CH" + } + ] + }, + { + "Answer": "9", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [ + "3" + ] + }, + "arg2": { + "name": "loss", + "value": [] + }, + "arg4": { + "name": "end", + "value": "X" + }, + "arg1": { + "name": "start", + "value": "6" + }, + "type": "CH" + } + ] + }, + { + "Answer": "7", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "3", + "4" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "17", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "8", + "9" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "11", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "2" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "gain", + "value": [ + "9" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "7", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "2", + "5" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "15", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "8", + "7" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "12", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [ + "3" + ] + }, + "arg2": { + "name": "loss", + "value": [] + }, + "arg4": { + "name": "end", + "value": "X" + }, + "arg1": { + "name": "start", + "value": "9" + }, + "type": "CH" + } + ] + }, + { + "Answer": "12", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg2": { + "name": "part", + "value": [ + "7", + "5" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "13", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "4", + "9" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "8", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [] + }, + "arg2": { + "name": "loss", + "value": [ + "2" + ] + }, + "arg4": { + "name": "end", + "value": "6" + }, + "arg1": { + "name": "start", + "value": "X" + }, + "type": "CH" + } + ] + }, + { + "Answer": "16", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "7", + "3", + "6" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "16", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "7" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "gain", + "value": [ + "5", + "4" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "16", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [] + }, + "arg2": { + "name": "loss", + "value": [ + "7", + "4" + ] + }, + "arg4": { + "name": "end", + "value": "5" + }, + "arg1": { + "name": "start", + "value": "X" + }, + "type": "CH" + } + ] + }, + { + "Answer": "18", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [ + "9", + "2" + ] + }, + "arg2": { + "name": "loss", + "value": [] + }, + "arg4": { + "name": "end", + "value": "X" + }, + "arg1": { + "name": "start", + "value": "7" + }, + "type": "CH" + } + ] + }, + { + "Answer": "24", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "9", + "8", + "7" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "21", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "6", + "8", + "7" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "15", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "2", + "9", + "4" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "18", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "5", + "6", + "7" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "20", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "4", + "9", + "7" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "50", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "37", + "13" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "48", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [ + "33" + ] + }, + "arg2": { + "name": "loss", + "value": [] + }, + "arg4": { + "name": "end", + "value": "X" + }, + "arg1": { + "name": "start", + "value": "15" + }, + "type": "CH" + } + ] + }, + { + "Answer": "52", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [ + "13" + ] + }, + "arg2": { + "name": "loss", + "value": [] + }, + "arg4": { + "name": "end", + "value": "X" + }, + "arg1": { + "name": "start", + "value": "39" + }, + "type": "CH" + } + ] + }, + { + "Answer": "37", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "16", + "21" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "35", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [ + "13" + ] + }, + "arg2": { + "name": "loss", + "value": [] + }, + "arg4": { + "name": "end", + "value": "X" + }, + "arg1": { + "name": "start", + "value": "22" + }, + "type": "CH" + } + ] + }, + { + "Answer": "56", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "33" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "loss", + "value": [ + "23" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "55", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "14", + "41" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "48", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "37", + "11" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "54", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "15", + "39" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "63", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [ + "27", + "19" + ] + }, + "arg2": { + "name": "loss", + "value": [] + }, + "arg4": { + "name": "end", + "value": "X" + }, + "arg1": { + "name": "start", + "value": "17" + }, + "type": "CH" + } + ] + }, + { + "Answer": "79", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "24", + "42", + "13" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "84", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "18" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "gain", + "value": [ + "26", + "40" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "39", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "11", + "13", + "15" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "109", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [ + "37", + "25" + ] + }, + "arg2": { + "name": "loss", + "value": [] + }, + "arg4": { + "name": "end", + "value": "X" + }, + "arg1": { + "name": "start", + "value": "47" + }, + "type": "CH" + } + ] + }, + { + "Answer": "72", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "10", + "46", + "16" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "100", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "45", + "23", + "32" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "103", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "36", + "32", + "35" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "47", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "DEFAULT" + }, + "arg2": { + "name": "end", + "value": "32" + }, + "arg5": { + "name": "gain", + "value": [ + "79" + ] + }, + "arg4": { + "name": "loss", + "value": [ + "X" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "11", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "43" + }, + "arg2": { + "name": "end", + "value": "54" + }, + "arg5": { + "name": "gain", + "value": [ + "X" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "71", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [ + "X" + ] + }, + "arg2": { + "name": "loss", + "value": [] + }, + "arg4": { + "name": "end", + "value": "85" + }, + "arg1": { + "name": "start", + "value": "14" + }, + "type": "CH" + } + ] + }, + { + "Answer": "46", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "41" + }, + "arg2": { + "name": "end", + "value": "87" + }, + "arg5": { + "name": "gain", + "value": [ + "X" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "16", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [ + "X" + ] + }, + "arg2": { + "name": "loss", + "value": [] + }, + "arg4": { + "name": "end", + "value": "18" + }, + "arg1": { + "name": "start", + "value": "2" + }, + "type": "CH" + } + ] + }, + { + "Answer": "63", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [ + "X" + ] + }, + "arg2": { + "name": "loss", + "value": [] + }, + "arg4": { + "name": "end", + "value": "75" + }, + "arg1": { + "name": "start", + "value": "12" + }, + "type": "CH" + } + ] + }, + { + "Answer": "13", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [ + "75" + ] + }, + "arg2": { + "name": "loss", + "value": [ + "X" + ] + }, + "arg4": { + "name": "end", + "value": "62" + }, + "arg1": { + "name": "start", + "value": "DEFAULT" + }, + "type": "CH" + } + ] + }, + { + "Answer": "66", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [ + "X" + ] + }, + "arg2": { + "name": "loss", + "value": [] + }, + "arg4": { + "name": "end", + "value": "98" + }, + "arg1": { + "name": "start", + "value": "32" + }, + "type": "CH" + } + ] + }, + { + "Answer": "4", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "DEFAULT" + }, + "arg2": { + "name": "end", + "value": "8" + }, + "arg5": { + "name": "gain", + "value": [ + "4", + "X" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "5", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "3", + "2" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "7", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "9" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "loss", + "value": [ + "2" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "14", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "8", + "6" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "9", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [ + "4" + ] + }, + "arg2": { + "name": "loss", + "value": [] + }, + "arg4": { + "name": "end", + "value": "X" + }, + "arg1": { + "name": "start", + "value": "5" + }, + "type": "CH" + } + ] + }, + { + "Answer": "4", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [] + }, + "arg2": { + "name": "loss", + "value": [ + "4" + ] + }, + "arg4": { + "name": "end", + "value": "X" + }, + "arg1": { + "name": "start", + "value": "8" + }, + "type": "CH" + } + ] + }, + { + "Answer": "4", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [] + }, + "arg2": { + "name": "loss", + "value": [ + "4" + ] + }, + "arg4": { + "name": "end", + "value": "X" + }, + "arg1": { + "name": "start", + "value": "8" + }, + "type": "CH" + } + ] + }, + { + "Answer": "11", + "Explanation": [ + { + "arg3": { + "name": "whole", + "value": "X" + }, + "arg5": { + "name": "part", + "value": [ + "9", + "2" + ] + }, + "type": "CB" + } + ] + }, + { + "Answer": "12", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "3" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "gain", + "value": [ + "9" + ] + }, + "type": "CH" + } + ] + }, + { + "Answer": "20", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [] + }, + "arg2": { + "name": "loss", + "value": [ + "18" + ] + }, + "arg4": { + "name": "end", + "value": "X" + }, + "arg1": { + "name": "start", + "value": "38" + }, + "type": "CH" + } + ] + }, + { + "Answer": "27", + "Explanation": [ + { + "arg2": { + "name": "part", + "value": [ + "17", + "10" + ] + }, + "arg1": { + "name": "whole", + "value": "X" + }, + "type": "CB" + } + ] + }, + { + "Answer": "77", + "Explanation": [ + { + "arg3": { + "name": "gain", + "value": [ + "29" + ] + }, + "arg2": { + "name": "loss", + "value": [] + }, + "arg4": { + "name": "end", + "value": "X" + }, + "arg1": { + "name": "start", + "value": "48" + }, + "type": "CH" + } + ] + }, + { + "Answer": "57", + "Explanation": [ + { + "arg3": { + "name": "start", + "value": "37" + }, + "arg2": { + "name": "end", + "value": "X" + }, + "arg5": { + "name": "gain", + "value": [ + "20" + ] + }, + "type": "CH" + } + ] + } + ] +} \ No newline at end of file