This was a lot tougher than I anticipated

Rest breaks helped a bit but it was still killer.
For Text 1 I explained Mars from the perspective of a primary school teacher and text 2 from the perspective of those Las Vegas "I'll make you a millionaire entrepreneur"-ish people about why new ideas are essential to avoid going stagnant lol
My answers:
Spoiler
1 - d
2 - b
3 - d
4 - c
5 - b
6 - c
7 - b
8 - a
9 - c
10 - c
11 - a
12 - a
13 - b
14 - b
15 - c
16 - d
17 - a
18 - c
19 - b
20 - c
21 - d
22 - d
23 - b
24 - a
25 - d
26 - c
27 - c
28 - a
29 - c
30 - c
31 - b
32 - c
33 - d
34 - b
35 - c
36 - b
37 - a
38 - a
39 - a
40 - a
41 - a
42 - a
43 - b
44 - b
45 - c
46 - b
47 - d
48 - a
49 - b
50 - a
51 - b
52 - c
53 - b
54 - a
55 - c
56 - d
57 - d
58 - d
59 - a
60 - b
61 - c
62 - c
63 - c
64 - b
65 - b
66 - c
67 - a
68 - b
69 - d
70 - d
If anyone wants to quickly type up their answers I wrote a little crappy Python code just to save myself the hassle:
GAT_LENGTH = 70
answers = []
for i in range(GAT_LENGTH):
answers.append(input(str(i + 1) + " - "))
for i in range(GAT_LENGTH):
print(str(i + 1) + " - " + (answers[i]))
It's not great but it was enough to save me 10 or so minutes