diff --git a/2D_DoYouSeeMe/color_and_shape_disambiguation/1.png b/2D_DoYouSeeMe/color_and_shape_disambiguation/1.png
new file mode 100644
index 0000000000000000000000000000000000000000..e2d765ca21689907560b4ab2b9b8aa71f50add32
--- /dev/null
+++ b/2D_DoYouSeeMe/color_and_shape_disambiguation/1.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:fb7bc98657fe877b10b9c7829d3f0a3d137225ccf5691b5c0333f6166dba055d
+size 16023
diff --git a/2D_DoYouSeeMe/color_and_shape_disambiguation/50.png b/2D_DoYouSeeMe/color_and_shape_disambiguation/50.png
new file mode 100644
index 0000000000000000000000000000000000000000..cefc715a79b6810393730e27410eed7b5ba5f22b
--- /dev/null
+++ b/2D_DoYouSeeMe/color_and_shape_disambiguation/50.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:708af109c49967fb86cfe1d1518c5920a00f0e9794f847bf6f73b43232ca6bb1
+size 20974
diff --git a/2D_DoYouSeeMe/color_and_shape_disambiguation/89.png b/2D_DoYouSeeMe/color_and_shape_disambiguation/89.png
new file mode 100644
index 0000000000000000000000000000000000000000..180a7519e9dbb05366e5f1a047d3e33861ca88ec
--- /dev/null
+++ b/2D_DoYouSeeMe/color_and_shape_disambiguation/89.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:4822637ab5eb1e92b70c60bd064d99956a4e1368b56ed36219522080aff55d45
+size 17707
diff --git a/2D_DoYouSeeMe/color_and_shape_disambiguation/dataset_creator_color.py b/2D_DoYouSeeMe/color_and_shape_disambiguation/dataset_creator_color.py
new file mode 100644
index 0000000000000000000000000000000000000000..f8e4576f5dcc639c278eb198364759b5a37a8184
--- /dev/null
+++ b/2D_DoYouSeeMe/color_and_shape_disambiguation/dataset_creator_color.py
@@ -0,0 +1,43 @@
+# Copyright (c) Microsoft Corporation.
+# Licensed under the MIT license.
+
+import pandas as pd
+import ast
+import random
+random.seed(0)
+import math
+# read dataset_info.csv
+data = pd.read_csv('visual_discrimination/sweep/color_and_shape_disambiguation/dataset_dump.csv')
+DATA_SAMPLE_RATIO = 0.5
+'''
+Eg: dataset_info.csv
+filename,shape_dictionary,color_dictionary
+easy_1.svg,{'triangle': 3},"{('triangle', 'yellow'): 1, ('triangle', 'orange'): 1, ('triangle', 'green'): 1}"
+medium_1.svg,"{'octagon': 3, 'cross': 6, 'star': 5}","{('octagon', 'red'): 1, ('octagon', 'gray'): 2, ('cross', 'yellow'): 2, ('cross', 'green'): 1, ('cross', 'purple'): 1, ('cross', 'blue'): 1, ('cross', 'orange'): 1, ('star', 'green'): 1, ('star', 'orange'): 1, ('star', 'blue'): 2, ('star', 'black'): 1}"
+
+easy_1.svg is the file name, it contains 1 yellow triangle, 1 orange triangle and 1 green triangle.
+
+Thus, a maximum number of questions that ca be asked for an image is the number of keys in the color_dictionary.
+'''
+
+# dataset list of dictionary row enteries
+dataset = []
+
+for idx, row in data.iterrows():
+ shape_dict = ast.literal_eval(row['shape_dictionary'])
+ color_dict = ast.literal_eval(row['color_dictionary'])
+ filename = row['filename']
+ sweep = row['sweep']
+
+
+ for (shape, color), count in random.sample(list(color_dict.items()), math.ceil(DATA_SAMPLE_RATIO*len(color_dict))):
+ question = f"Count the number of {shape}'s that are {color}."
+ answer = count
+ data = {
+ 'filename': filename,
+ 'question': question,
+ 'answer': answer,
+ 'sweep': sweep
+ }
+ dataset.append(data)
+pd.DataFrame(dataset).to_csv('visual_discrimination/sweep/color_and_shape_disambiguation/dataset_info.csv', index=False)
\ No newline at end of file
diff --git a/2D_DoYouSeeMe/color_and_shape_disambiguation/dataset_dump.csv b/2D_DoYouSeeMe/color_and_shape_disambiguation/dataset_dump.csv
new file mode 100644
index 0000000000000000000000000000000000000000..d5822b0135523ef4e026d26531c7943b464a3c14
--- /dev/null
+++ b/2D_DoYouSeeMe/color_and_shape_disambiguation/dataset_dump.csv
@@ -0,0 +1,91 @@
+filename,shape_dictionary,color_dictionary,sweep
+0.svg,"{'hexagon': 1, 'pentagon': 2}","{('hexagon', 'yellow'): 1, ('pentagon', 'yellow'): 1, ('pentagon', 'red'): 1}","(2, 2)"
+1.svg,"{'star': 2, 'cross': 2}","{('star', 'green'): 1, ('star', 'red'): 1, ('cross', 'blue'): 1, ('cross', 'red'): 1}","(2, 2)"
+2.svg,"{'pentagon': 2, 'triangle': 1}","{('pentagon', 'black'): 1, ('pentagon', 'purple'): 1, ('triangle', 'gray'): 1}","(2, 2)"
+3.svg,"{'hexagon': 1, 'cross': 1}","{('hexagon', 'gray'): 1, ('cross', 'purple'): 1}","(2, 2)"
+4.svg,"{'triangle': 2, 'cross': 1}","{('triangle', 'green'): 1, ('triangle', 'purple'): 1, ('cross', 'gray'): 1}","(2, 2)"
+5.svg,"{'cross': 2, 'star': 2}","{('cross', 'purple'): 1, ('cross', 'red'): 1, ('star', 'green'): 1, ('star', 'black'): 1}","(2, 2)"
+6.svg,"{'star': 1, 'octagon': 1}","{('star', 'red'): 1, ('octagon', 'purple'): 1}","(2, 2)"
+7.svg,"{'triangle': 1, 'pentagon': 2}","{('triangle', 'green'): 1, ('pentagon', 'green'): 1, ('pentagon', 'black'): 1}","(2, 2)"
+8.svg,"{'triangle': 2, 'cross': 2}","{('triangle', 'orange'): 1, ('triangle', 'black'): 1, ('cross', 'black'): 1, ('cross', 'purple'): 1}","(2, 2)"
+9.svg,"{'hexagon': 1, 'cross': 2}","{('hexagon', 'orange'): 1, ('cross', 'gray'): 1, ('cross', 'orange'): 1}","(2, 2)"
+10.svg,"{'triangle': 1, 'hexagon': 1}","{('triangle', 'yellow'): 1, ('hexagon', 'purple'): 1}","(2, 4)"
+11.svg,"{'star': 3, 'triangle': 1}","{('star', 'blue'): 1, ('star', 'purple'): 1, ('star', 'black'): 1, ('triangle', 'black'): 1}","(2, 4)"
+12.svg,"{'hexagon': 3, 'cross': 4}","{('hexagon', 'yellow'): 1, ('hexagon', 'blue'): 2, ('cross', 'green'): 2, ('cross', 'red'): 1, ('cross', 'black'): 1}","(2, 4)"
+13.svg,"{'pentagon': 1, 'star': 3}","{('pentagon', 'blue'): 1, ('star', 'orange'): 1, ('star', 'red'): 1, ('star', 'blue'): 1}","(2, 4)"
+14.svg,{'star': 4},"{('star', 'green'): 1, ('star', 'blue'): 2, ('star', 'yellow'): 1}","(2, 4)"
+15.svg,"{'triangle': 2, 'pentagon': 4}","{('triangle', 'black'): 1, ('triangle', 'green'): 1, ('pentagon', 'yellow'): 1, ('pentagon', 'red'): 1, ('pentagon', 'purple'): 1, ('pentagon', 'gray'): 1}","(2, 4)"
+16.svg,"{'star': 1, 'triangle': 2}","{('star', 'purple'): 1, ('triangle', 'red'): 1, ('triangle', 'gray'): 1}","(2, 4)"
+17.svg,"{'pentagon': 2, 'cross': 3}","{('pentagon', 'blue'): 1, ('pentagon', 'yellow'): 1, ('cross', 'green'): 1, ('cross', 'orange'): 2}","(2, 4)"
+18.svg,"{'hexagon': 2, 'cross': 3}","{('hexagon', 'purple'): 1, ('hexagon', 'black'): 1, ('cross', 'purple'): 1, ('cross', 'gray'): 1, ('cross', 'black'): 1}","(2, 4)"
+19.svg,"{'hexagon': 4, 'octagon': 1}","{('hexagon', 'purple'): 1, ('hexagon', 'blue'): 2, ('hexagon', 'red'): 1, ('octagon', 'orange'): 1}","(2, 4)"
+20.svg,"{'octagon': 5, 'triangle': 5}","{('octagon', 'purple'): 1, ('octagon', 'black'): 1, ('octagon', 'gray'): 1, ('octagon', 'blue'): 2, ('triangle', 'gray'): 1, ('triangle', 'red'): 1, ('triangle', 'purple'): 1, ('triangle', 'green'): 1, ('triangle', 'orange'): 1}","(2, 6)"
+21.svg,"{'pentagon': 5, 'octagon': 3}","{('pentagon', 'orange'): 2, ('pentagon', 'blue'): 1, ('pentagon', 'red'): 1, ('pentagon', 'green'): 1, ('octagon', 'purple'): 2, ('octagon', 'green'): 1}","(2, 6)"
+22.svg,"{'triangle': 3, 'pentagon': 1}","{('triangle', 'blue'): 1, ('triangle', 'gray'): 1, ('triangle', 'red'): 1, ('pentagon', 'purple'): 1}","(2, 6)"
+23.svg,"{'hexagon': 1, 'octagon': 6}","{('hexagon', 'red'): 1, ('octagon', 'red'): 2, ('octagon', 'gray'): 1, ('octagon', 'purple'): 1, ('octagon', 'black'): 1, ('octagon', 'yellow'): 1}","(2, 6)"
+24.svg,"{'star': 4, 'triangle': 1}","{('star', 'green'): 2, ('star', 'black'): 1, ('star', 'gray'): 1, ('triangle', 'purple'): 1}","(2, 6)"
+25.svg,"{'octagon': 3, 'hexagon': 5}","{('octagon', 'orange'): 1, ('octagon', 'purple'): 1, ('octagon', 'yellow'): 1, ('hexagon', 'black'): 1, ('hexagon', 'purple'): 1, ('hexagon', 'yellow'): 2, ('hexagon', 'orange'): 1}","(2, 6)"
+26.svg,"{'pentagon': 5, 'hexagon': 3}","{('pentagon', 'orange'): 1, ('pentagon', 'red'): 1, ('pentagon', 'black'): 1, ('pentagon', 'green'): 1, ('pentagon', 'gray'): 1, ('hexagon', 'orange'): 2, ('hexagon', 'red'): 1}","(2, 6)"
+27.svg,"{'cross': 3, 'star': 2}","{('cross', 'orange'): 2, ('cross', 'gray'): 1, ('star', 'black'): 1, ('star', 'yellow'): 1}","(2, 6)"
+28.svg,"{'hexagon': 4, 'star': 3}","{('hexagon', 'orange'): 2, ('hexagon', 'green'): 1, ('hexagon', 'yellow'): 1, ('star', 'black'): 1, ('star', 'yellow'): 1, ('star', 'purple'): 1}","(2, 6)"
+29.svg,"{'hexagon': 2, 'triangle': 4}","{('hexagon', 'yellow'): 2, ('triangle', 'black'): 1, ('triangle', 'blue'): 1, ('triangle', 'red'): 1, ('triangle', 'gray'): 1}","(2, 6)"
+30.svg,"{'pentagon': 1, 'hexagon': 1, 'octagon': 2, 'cross': 1}","{('pentagon', 'red'): 1, ('hexagon', 'yellow'): 1, ('octagon', 'green'): 1, ('octagon', 'yellow'): 1, ('cross', 'yellow'): 1}","(4, 2)"
+31.svg,"{'triangle': 1, 'cross': 1, 'hexagon': 1, 'star': 2}","{('triangle', 'red'): 1, ('cross', 'blue'): 1, ('hexagon', 'red'): 1, ('star', 'orange'): 1, ('star', 'red'): 1}","(4, 2)"
+32.svg,"{'star': 2, 'pentagon': 2, 'octagon': 2, 'hexagon': 1}","{('star', 'blue'): 1, ('star', 'yellow'): 1, ('pentagon', 'green'): 1, ('pentagon', 'gray'): 1, ('octagon', 'green'): 1, ('octagon', 'purple'): 1, ('hexagon', 'black'): 1}","(4, 2)"
+33.svg,"{'triangle': 1, 'pentagon': 2, 'cross': 1, 'star': 1}","{('triangle', 'purple'): 1, ('pentagon', 'blue'): 1, ('pentagon', 'black'): 1, ('cross', 'black'): 1, ('star', 'orange'): 1}","(4, 2)"
+34.svg,"{'pentagon': 1, 'triangle': 2, 'star': 1, 'hexagon': 1}","{('pentagon', 'red'): 1, ('triangle', 'yellow'): 1, ('triangle', 'red'): 1, ('star', 'red'): 1, ('hexagon', 'yellow'): 1}","(4, 2)"
+35.svg,"{'octagon': 1, 'triangle': 2, 'pentagon': 2, 'cross': 2}","{('octagon', 'blue'): 1, ('triangle', 'purple'): 1, ('triangle', 'blue'): 1, ('pentagon', 'gray'): 1, ('pentagon', 'black'): 1, ('cross', 'green'): 1, ('cross', 'gray'): 1}","(4, 2)"
+36.svg,"{'star': 1, 'triangle': 1, 'hexagon': 1, 'cross': 1}","{('star', 'yellow'): 1, ('triangle', 'blue'): 1, ('hexagon', 'red'): 1, ('cross', 'orange'): 1}","(4, 2)"
+37.svg,"{'cross': 2, 'octagon': 2, 'hexagon': 1, 'star': 1}","{('cross', 'orange'): 1, ('cross', 'black'): 1, ('octagon', 'red'): 1, ('octagon', 'green'): 1, ('hexagon', 'green'): 1, ('star', 'orange'): 1}","(4, 2)"
+38.svg,"{'hexagon': 2, 'pentagon': 2, 'cross': 2, 'star': 2}","{('hexagon', 'blue'): 1, ('hexagon', 'gray'): 1, ('pentagon', 'green'): 1, ('pentagon', 'blue'): 1, ('cross', 'red'): 1, ('cross', 'blue'): 1, ('star', 'purple'): 2}","(4, 2)"
+39.svg,"{'triangle': 2, 'pentagon': 2, 'hexagon': 2, 'octagon': 1}","{('triangle', 'black'): 1, ('triangle', 'purple'): 1, ('pentagon', 'green'): 1, ('pentagon', 'red'): 1, ('hexagon', 'black'): 1, ('hexagon', 'red'): 1, ('octagon', 'green'): 1}","(4, 2)"
+40.svg,"{'pentagon': 4, 'triangle': 1, 'hexagon': 1, 'star': 4}","{('pentagon', 'blue'): 1, ('pentagon', 'gray'): 1, ('pentagon', 'purple'): 1, ('pentagon', 'black'): 1, ('triangle', 'red'): 1, ('hexagon', 'purple'): 1, ('star', 'orange'): 2, ('star', 'gray'): 1, ('star', 'purple'): 1}","(4, 4)"
+41.svg,"{'cross': 2, 'pentagon': 1, 'octagon': 4, 'triangle': 2}","{('cross', 'red'): 1, ('cross', 'purple'): 1, ('pentagon', 'green'): 1, ('octagon', 'gray'): 1, ('octagon', 'green'): 1, ('octagon', 'red'): 1, ('octagon', 'black'): 1, ('triangle', 'orange'): 1, ('triangle', 'black'): 1}","(4, 4)"
+42.svg,"{'octagon': 1, 'cross': 3, 'pentagon': 1, 'star': 3}","{('octagon', 'yellow'): 1, ('cross', 'yellow'): 1, ('cross', 'orange'): 1, ('cross', 'gray'): 1, ('pentagon', 'red'): 1, ('star', 'gray'): 1, ('star', 'green'): 1, ('star', 'black'): 1}","(4, 4)"
+43.svg,"{'hexagon': 4, 'star': 2, 'octagon': 3, 'pentagon': 3}","{('hexagon', 'red'): 3, ('hexagon', 'gray'): 1, ('star', 'purple'): 2, ('octagon', 'gray'): 1, ('octagon', 'purple'): 1, ('octagon', 'orange'): 1, ('pentagon', 'red'): 2, ('pentagon', 'yellow'): 1}","(4, 4)"
+44.svg,"{'triangle': 3, 'cross': 1, 'hexagon': 2, 'pentagon': 4}","{('triangle', 'black'): 1, ('triangle', 'green'): 1, ('triangle', 'red'): 1, ('cross', 'green'): 1, ('hexagon', 'blue'): 1, ('hexagon', 'black'): 1, ('pentagon', 'orange'): 1, ('pentagon', 'green'): 1, ('pentagon', 'gray'): 1, ('pentagon', 'yellow'): 1}","(4, 4)"
+45.svg,"{'pentagon': 1, 'hexagon': 3, 'cross': 2, 'triangle': 4}","{('pentagon', 'purple'): 1, ('hexagon', 'orange'): 1, ('hexagon', 'black'): 1, ('hexagon', 'yellow'): 1, ('cross', 'blue'): 1, ('cross', 'purple'): 1, ('triangle', 'yellow'): 1, ('triangle', 'orange'): 2, ('triangle', 'red'): 1}","(4, 4)"
+46.svg,"{'hexagon': 3, 'cross': 2, 'octagon': 4, 'star': 2}","{('hexagon', 'purple'): 2, ('hexagon', 'red'): 1, ('cross', 'purple'): 1, ('cross', 'gray'): 1, ('octagon', 'red'): 1, ('octagon', 'yellow'): 2, ('octagon', 'green'): 1, ('star', 'blue'): 1, ('star', 'purple'): 1}","(4, 4)"
+47.svg,"{'star': 2, 'triangle': 1, 'cross': 1, 'pentagon': 3}","{('star', 'blue'): 1, ('star', 'black'): 1, ('triangle', 'orange'): 1, ('cross', 'black'): 1, ('pentagon', 'red'): 1, ('pentagon', 'gray'): 1, ('pentagon', 'purple'): 1}","(4, 4)"
+48.svg,"{'cross': 1, 'octagon': 4, 'pentagon': 4, 'triangle': 2}","{('cross', 'green'): 1, ('octagon', 'blue'): 1, ('octagon', 'orange'): 1, ('octagon', 'gray'): 1, ('octagon', 'black'): 1, ('pentagon', 'yellow'): 2, ('pentagon', 'green'): 1, ('pentagon', 'orange'): 1, ('triangle', 'gray'): 1, ('triangle', 'blue'): 1}","(4, 4)"
+49.svg,"{'octagon': 1, 'cross': 4, 'pentagon': 3, 'hexagon': 2}","{('octagon', 'black'): 1, ('cross', 'red'): 1, ('cross', 'green'): 1, ('cross', 'purple'): 1, ('cross', 'gray'): 1, ('pentagon', 'orange'): 2, ('pentagon', 'green'): 1, ('hexagon', 'blue'): 1, ('hexagon', 'black'): 1}","(4, 4)"
+50.svg,"{'hexagon': 6, 'triangle': 5, 'star': 4, 'cross': 1}","{('hexagon', 'black'): 1, ('hexagon', 'red'): 1, ('hexagon', 'purple'): 2, ('hexagon', 'green'): 2, ('triangle', 'blue'): 1, ('triangle', 'purple'): 3, ('triangle', 'black'): 1, ('star', 'gray'): 2, ('star', 'green'): 1, ('star', 'blue'): 1, ('cross', 'green'): 1}","(4, 6)"
+51.svg,"{'octagon': 2, 'triangle': 1, 'star': 5, 'cross': 4}","{('octagon', 'orange'): 1, ('octagon', 'black'): 1, ('triangle', 'gray'): 1, ('star', 'purple'): 1, ('star', 'gray'): 1, ('star', 'blue'): 1, ('star', 'green'): 2, ('cross', 'yellow'): 1, ('cross', 'green'): 1, ('cross', 'red'): 1, ('cross', 'purple'): 1}","(4, 6)"
+52.svg,"{'cross': 4, 'star': 2, 'hexagon': 2, 'pentagon': 5}","{('cross', 'orange'): 1, ('cross', 'blue'): 1, ('cross', 'purple'): 1, ('cross', 'yellow'): 1, ('star', 'purple'): 1, ('star', 'blue'): 1, ('hexagon', 'black'): 2, ('pentagon', 'black'): 2, ('pentagon', 'orange'): 1, ('pentagon', 'yellow'): 1, ('pentagon', 'purple'): 1}","(4, 6)"
+53.svg,"{'cross': 1, 'star': 1, 'hexagon': 6, 'pentagon': 6}","{('cross', 'black'): 1, ('star', 'gray'): 1, ('hexagon', 'purple'): 2, ('hexagon', 'gray'): 1, ('hexagon', 'blue'): 1, ('hexagon', 'green'): 1, ('hexagon', 'black'): 1, ('pentagon', 'purple'): 1, ('pentagon', 'blue'): 2, ('pentagon', 'black'): 1, ('pentagon', 'green'): 1, ('pentagon', 'yellow'): 1}","(4, 6)"
+54.svg,"{'pentagon': 3, 'hexagon': 4, 'octagon': 1, 'star': 4}","{('pentagon', 'blue'): 1, ('pentagon', 'orange'): 1, ('pentagon', 'gray'): 1, ('hexagon', 'green'): 1, ('hexagon', 'black'): 1, ('hexagon', 'purple'): 1, ('hexagon', 'yellow'): 1, ('octagon', 'gray'): 1, ('star', 'green'): 1, ('star', 'orange'): 1, ('star', 'gray'): 1, ('star', 'blue'): 1}","(4, 6)"
+55.svg,"{'hexagon': 2, 'pentagon': 4, 'triangle': 3, 'cross': 2}","{('hexagon', 'yellow'): 1, ('hexagon', 'orange'): 1, ('pentagon', 'purple'): 1, ('pentagon', 'gray'): 1, ('pentagon', 'black'): 1, ('pentagon', 'orange'): 1, ('triangle', 'gray'): 1, ('triangle', 'black'): 1, ('triangle', 'blue'): 1, ('cross', 'green'): 2}","(4, 6)"
+56.svg,"{'star': 6, 'cross': 1, 'pentagon': 2, 'triangle': 4}","{('star', 'yellow'): 2, ('star', 'blue'): 1, ('star', 'gray'): 2, ('star', 'black'): 1, ('cross', 'purple'): 1, ('pentagon', 'green'): 1, ('pentagon', 'purple'): 1, ('triangle', 'blue'): 1, ('triangle', 'orange'): 1, ('triangle', 'yellow'): 1, ('triangle', 'black'): 1}","(4, 6)"
+57.svg,"{'triangle': 6, 'octagon': 5, 'hexagon': 1, 'pentagon': 1}","{('triangle', 'gray'): 2, ('triangle', 'orange'): 2, ('triangle', 'green'): 1, ('triangle', 'blue'): 1, ('octagon', 'green'): 2, ('octagon', 'red'): 1, ('octagon', 'gray'): 1, ('octagon', 'purple'): 1, ('hexagon', 'blue'): 1, ('pentagon', 'orange'): 1}","(4, 6)"
+58.svg,"{'cross': 3, 'star': 1, 'octagon': 5, 'hexagon': 3}","{('cross', 'black'): 1, ('cross', 'green'): 1, ('cross', 'red'): 1, ('star', 'red'): 1, ('octagon', 'yellow'): 1, ('octagon', 'purple'): 2, ('octagon', 'red'): 2, ('hexagon', 'yellow'): 1, ('hexagon', 'black'): 1, ('hexagon', 'orange'): 1}","(4, 6)"
+59.svg,"{'hexagon': 6, 'pentagon': 5, 'octagon': 1, 'cross': 1}","{('hexagon', 'green'): 1, ('hexagon', 'red'): 1, ('hexagon', 'blue'): 2, ('hexagon', 'orange'): 1, ('hexagon', 'gray'): 1, ('pentagon', 'blue'): 2, ('pentagon', 'black'): 1, ('pentagon', 'gray'): 2, ('octagon', 'orange'): 1, ('cross', 'green'): 1}","(4, 6)"
+60.svg,"{'star': 1, 'triangle': 1, 'pentagon': 2, 'hexagon': 2, 'cross': 1, 'octagon': 1}","{('star', 'green'): 1, ('triangle', 'green'): 1, ('pentagon', 'green'): 1, ('pentagon', 'gray'): 1, ('hexagon', 'green'): 1, ('hexagon', 'orange'): 1, ('cross', 'black'): 1, ('octagon', 'yellow'): 1}","(6, 2)"
+61.svg,"{'octagon': 2, 'cross': 2, 'star': 1, 'triangle': 1, 'pentagon': 2, 'hexagon': 1}","{('octagon', 'gray'): 1, ('octagon', 'red'): 1, ('cross', 'purple'): 1, ('cross', 'orange'): 1, ('star', 'orange'): 1, ('triangle', 'yellow'): 1, ('pentagon', 'purple'): 1, ('pentagon', 'black'): 1, ('hexagon', 'red'): 1}","(6, 2)"
+62.svg,"{'star': 1, 'cross': 1, 'triangle': 1, 'octagon': 1, 'pentagon': 1, 'hexagon': 2}","{('star', 'black'): 1, ('cross', 'yellow'): 1, ('triangle', 'purple'): 1, ('octagon', 'orange'): 1, ('pentagon', 'gray'): 1, ('hexagon', 'black'): 1, ('hexagon', 'purple'): 1}","(6, 2)"
+63.svg,"{'star': 2, 'pentagon': 1, 'triangle': 2, 'cross': 2, 'octagon': 1, 'hexagon': 2}","{('star', 'yellow'): 1, ('star', 'gray'): 1, ('pentagon', 'blue'): 1, ('triangle', 'purple'): 1, ('triangle', 'blue'): 1, ('cross', 'blue'): 1, ('cross', 'red'): 1, ('octagon', 'orange'): 1, ('hexagon', 'gray'): 1, ('hexagon', 'red'): 1}","(6, 2)"
+64.svg,"{'cross': 1, 'triangle': 1, 'octagon': 2, 'star': 1, 'hexagon': 1, 'pentagon': 2}","{('cross', 'gray'): 1, ('triangle', 'yellow'): 1, ('octagon', 'red'): 2, ('star', 'black'): 1, ('hexagon', 'red'): 1, ('pentagon', 'red'): 1, ('pentagon', 'black'): 1}","(6, 2)"
+65.svg,"{'hexagon': 2, 'pentagon': 2, 'octagon': 2, 'cross': 1, 'triangle': 1, 'star': 1}","{('hexagon', 'gray'): 1, ('hexagon', 'purple'): 1, ('pentagon', 'green'): 1, ('pentagon', 'gray'): 1, ('octagon', 'purple'): 1, ('octagon', 'black'): 1, ('cross', 'red'): 1, ('triangle', 'yellow'): 1, ('star', 'gray'): 1}","(6, 2)"
+66.svg,"{'star': 1, 'triangle': 1, 'hexagon': 1, 'pentagon': 1, 'cross': 2, 'octagon': 1}","{('star', 'black'): 1, ('triangle', 'yellow'): 1, ('hexagon', 'purple'): 1, ('pentagon', 'yellow'): 1, ('cross', 'red'): 1, ('cross', 'black'): 1, ('octagon', 'green'): 1}","(6, 2)"
+67.svg,"{'hexagon': 1, 'cross': 2, 'star': 1, 'triangle': 1, 'octagon': 2, 'pentagon': 1}","{('hexagon', 'purple'): 1, ('cross', 'blue'): 1, ('cross', 'yellow'): 1, ('star', 'black'): 1, ('triangle', 'orange'): 1, ('octagon', 'green'): 1, ('octagon', 'black'): 1, ('pentagon', 'blue'): 1}","(6, 2)"
+68.svg,"{'star': 2, 'octagon': 1, 'pentagon': 2, 'hexagon': 1, 'cross': 2, 'triangle': 1}","{('star', 'purple'): 2, ('octagon', 'black'): 1, ('pentagon', 'gray'): 1, ('pentagon', 'blue'): 1, ('hexagon', 'purple'): 1, ('cross', 'red'): 1, ('cross', 'purple'): 1, ('triangle', 'purple'): 1}","(6, 2)"
+69.svg,"{'pentagon': 1, 'star': 1, 'octagon': 2, 'hexagon': 1, 'cross': 2, 'triangle': 2}","{('pentagon', 'red'): 1, ('star', 'yellow'): 1, ('octagon', 'blue'): 1, ('octagon', 'yellow'): 1, ('hexagon', 'green'): 1, ('cross', 'purple'): 1, ('cross', 'red'): 1, ('triangle', 'purple'): 1, ('triangle', 'gray'): 1}","(6, 2)"
+70.svg,"{'star': 2, 'pentagon': 3, 'cross': 3, 'hexagon': 2, 'octagon': 3, 'triangle': 1}","{('star', 'red'): 2, ('pentagon', 'yellow'): 1, ('pentagon', 'red'): 1, ('pentagon', 'orange'): 1, ('cross', 'black'): 1, ('cross', 'orange'): 1, ('cross', 'blue'): 1, ('hexagon', 'green'): 1, ('hexagon', 'black'): 1, ('octagon', 'black'): 1, ('octagon', 'purple'): 1, ('octagon', 'blue'): 1, ('triangle', 'red'): 1}","(6, 4)"
+71.svg,"{'cross': 3, 'triangle': 2, 'hexagon': 3, 'pentagon': 2, 'octagon': 2, 'star': 1}","{('cross', 'black'): 1, ('cross', 'green'): 1, ('cross', 'orange'): 1, ('triangle', 'black'): 1, ('triangle', 'yellow'): 1, ('hexagon', 'black'): 1, ('hexagon', 'gray'): 1, ('hexagon', 'red'): 1, ('pentagon', 'black'): 1, ('pentagon', 'green'): 1, ('octagon', 'orange'): 1, ('octagon', 'black'): 1, ('star', 'gray'): 1}","(6, 4)"
+72.svg,"{'octagon': 3, 'cross': 4, 'triangle': 4, 'pentagon': 3, 'star': 1, 'hexagon': 3}","{('octagon', 'red'): 1, ('octagon', 'green'): 1, ('octagon', 'purple'): 1, ('cross', 'black'): 1, ('cross', 'red'): 1, ('cross', 'gray'): 1, ('cross', 'blue'): 1, ('triangle', 'orange'): 2, ('triangle', 'purple'): 1, ('triangle', 'black'): 1, ('pentagon', 'gray'): 2, ('pentagon', 'green'): 1, ('star', 'orange'): 1, ('hexagon', 'blue'): 2, ('hexagon', 'black'): 1}","(6, 4)"
+73.svg,"{'star': 4, 'cross': 2, 'hexagon': 4, 'triangle': 1, 'pentagon': 3, 'octagon': 1}","{('star', 'purple'): 1, ('star', 'yellow'): 1, ('star', 'blue'): 1, ('star', 'gray'): 1, ('cross', 'orange'): 1, ('cross', 'green'): 1, ('hexagon', 'green'): 1, ('hexagon', 'red'): 1, ('hexagon', 'gray'): 1, ('hexagon', 'blue'): 1, ('triangle', 'yellow'): 1, ('pentagon', 'yellow'): 2, ('pentagon', 'blue'): 1, ('octagon', 'black'): 1}","(6, 4)"
+74.svg,"{'octagon': 4, 'hexagon': 2, 'cross': 3, 'triangle': 2, 'pentagon': 1, 'star': 3}","{('octagon', 'purple'): 1, ('octagon', 'red'): 1, ('octagon', 'yellow'): 2, ('hexagon', 'blue'): 2, ('cross', 'yellow'): 1, ('cross', 'blue'): 2, ('triangle', 'yellow'): 1, ('triangle', 'black'): 1, ('pentagon', 'gray'): 1, ('star', 'yellow'): 1, ('star', 'orange'): 1, ('star', 'purple'): 1}","(6, 4)"
+75.svg,"{'octagon': 3, 'pentagon': 4, 'cross': 2, 'hexagon': 4, 'star': 1, 'triangle': 1}","{('octagon', 'blue'): 1, ('octagon', 'yellow'): 1, ('octagon', 'gray'): 1, ('pentagon', 'blue'): 1, ('pentagon', 'purple'): 1, ('pentagon', 'red'): 1, ('pentagon', 'orange'): 1, ('cross', 'blue'): 1, ('cross', 'gray'): 1, ('hexagon', 'orange'): 1, ('hexagon', 'black'): 1, ('hexagon', 'blue'): 1, ('hexagon', 'yellow'): 1, ('star', 'blue'): 1, ('triangle', 'red'): 1}","(6, 4)"
+76.svg,"{'hexagon': 1, 'pentagon': 3, 'cross': 4, 'triangle': 4, 'octagon': 4, 'star': 1}","{('hexagon', 'red'): 1, ('pentagon', 'gray'): 1, ('pentagon', 'red'): 1, ('pentagon', 'orange'): 1, ('cross', 'orange'): 2, ('cross', 'red'): 1, ('cross', 'gray'): 1, ('triangle', 'red'): 1, ('triangle', 'purple'): 1, ('triangle', 'black'): 1, ('triangle', 'blue'): 1, ('octagon', 'gray'): 1, ('octagon', 'blue'): 1, ('octagon', 'green'): 1, ('octagon', 'black'): 1, ('star', 'red'): 1}","(6, 4)"
+77.svg,"{'triangle': 1, 'cross': 3, 'hexagon': 4, 'star': 1, 'octagon': 1, 'pentagon': 1}","{('triangle', 'blue'): 1, ('cross', 'yellow'): 1, ('cross', 'black'): 2, ('hexagon', 'yellow'): 2, ('hexagon', 'purple'): 1, ('hexagon', 'red'): 1, ('star', 'purple'): 1, ('octagon', 'blue'): 1, ('pentagon', 'blue'): 1}","(6, 4)"
+78.svg,"{'star': 4, 'triangle': 4, 'hexagon': 3, 'pentagon': 3, 'octagon': 4, 'cross': 1}","{('star', 'black'): 1, ('star', 'red'): 1, ('star', 'blue'): 2, ('triangle', 'green'): 1, ('triangle', 'purple'): 1, ('triangle', 'blue'): 1, ('triangle', 'black'): 1, ('hexagon', 'gray'): 1, ('hexagon', 'green'): 1, ('hexagon', 'orange'): 1, ('pentagon', 'blue'): 1, ('pentagon', 'orange'): 1, ('pentagon', 'green'): 1, ('octagon', 'red'): 2, ('octagon', 'black'): 1, ('octagon', 'purple'): 1, ('cross', 'black'): 1}","(6, 4)"
+79.svg,"{'hexagon': 2, 'cross': 3, 'star': 1, 'octagon': 3, 'pentagon': 3, 'triangle': 2}","{('hexagon', 'red'): 1, ('hexagon', 'blue'): 1, ('cross', 'gray'): 1, ('cross', 'purple'): 1, ('cross', 'green'): 1, ('star', 'red'): 1, ('octagon', 'green'): 1, ('octagon', 'purple'): 1, ('octagon', 'yellow'): 1, ('pentagon', 'green'): 1, ('pentagon', 'yellow'): 2, ('triangle', 'black'): 1, ('triangle', 'gray'): 1}","(6, 4)"
+80.svg,"{'triangle': 2, 'cross': 1, 'star': 5, 'hexagon': 1, 'pentagon': 1, 'octagon': 2}","{('triangle', 'blue'): 1, ('triangle', 'black'): 1, ('cross', 'black'): 1, ('star', 'purple'): 1, ('star', 'blue'): 4, ('hexagon', 'orange'): 1, ('pentagon', 'red'): 1, ('octagon', 'yellow'): 1, ('octagon', 'green'): 1}","(6, 6)"
+81.svg,"{'cross': 4, 'octagon': 5, 'pentagon': 6, 'hexagon': 4, 'star': 2, 'triangle': 1}","{('cross', 'green'): 2, ('cross', 'blue'): 1, ('cross', 'orange'): 1, ('octagon', 'green'): 2, ('octagon', 'gray'): 1, ('octagon', 'black'): 1, ('octagon', 'purple'): 1, ('pentagon', 'blue'): 1, ('pentagon', 'red'): 1, ('pentagon', 'gray'): 2, ('pentagon', 'green'): 1, ('pentagon', 'purple'): 1, ('hexagon', 'orange'): 1, ('hexagon', 'green'): 1, ('hexagon', 'blue'): 1, ('hexagon', 'black'): 1, ('star', 'blue'): 2, ('triangle', 'blue'): 1}","(6, 6)"
+82.svg,"{'star': 3, 'hexagon': 6, 'cross': 5, 'triangle': 2, 'octagon': 6, 'pentagon': 1}","{('star', 'black'): 2, ('star', 'blue'): 1, ('hexagon', 'orange'): 2, ('hexagon', 'gray'): 1, ('hexagon', 'yellow'): 2, ('hexagon', 'red'): 1, ('cross', 'black'): 1, ('cross', 'yellow'): 1, ('cross', 'green'): 1, ('cross', 'orange'): 1, ('cross', 'blue'): 1, ('triangle', 'orange'): 1, ('triangle', 'black'): 1, ('octagon', 'purple'): 1, ('octagon', 'red'): 1, ('octagon', 'orange'): 2, ('octagon', 'gray'): 1, ('octagon', 'blue'): 1, ('pentagon', 'red'): 1}","(6, 6)"
+83.svg,"{'hexagon': 2, 'octagon': 3, 'cross': 2, 'triangle': 4, 'star': 4, 'pentagon': 1}","{('hexagon', 'orange'): 1, ('hexagon', 'yellow'): 1, ('octagon', 'gray'): 1, ('octagon', 'purple'): 1, ('octagon', 'orange'): 1, ('cross', 'purple'): 1, ('cross', 'gray'): 1, ('triangle', 'purple'): 1, ('triangle', 'orange'): 1, ('triangle', 'red'): 1, ('triangle', 'gray'): 1, ('star', 'black'): 1, ('star', 'red'): 3, ('pentagon', 'gray'): 1}","(6, 6)"
+84.svg,"{'cross': 3, 'star': 1, 'triangle': 5, 'octagon': 4, 'pentagon': 1, 'hexagon': 6}","{('cross', 'green'): 1, ('cross', 'orange'): 1, ('cross', 'red'): 1, ('star', 'green'): 1, ('triangle', 'gray'): 1, ('triangle', 'red'): 2, ('triangle', 'blue'): 1, ('triangle', 'green'): 1, ('octagon', 'orange'): 1, ('octagon', 'gray'): 3, ('pentagon', 'gray'): 1, ('hexagon', 'red'): 2, ('hexagon', 'yellow'): 2, ('hexagon', 'black'): 1, ('hexagon', 'purple'): 1}","(6, 6)"
+85.svg,"{'octagon': 6, 'triangle': 4, 'hexagon': 5, 'star': 1, 'cross': 6, 'pentagon': 2}","{('octagon', 'gray'): 2, ('octagon', 'red'): 1, ('octagon', 'black'): 1, ('octagon', 'yellow'): 1, ('octagon', 'purple'): 1, ('triangle', 'red'): 2, ('triangle', 'yellow'): 1, ('triangle', 'blue'): 1, ('hexagon', 'red'): 3, ('hexagon', 'purple'): 1, ('hexagon', 'gray'): 1, ('star', 'blue'): 1, ('cross', 'black'): 1, ('cross', 'orange'): 2, ('cross', 'blue'): 1, ('cross', 'green'): 1, ('cross', 'purple'): 1, ('pentagon', 'red'): 1, ('pentagon', 'orange'): 1}","(6, 6)"
+86.svg,"{'triangle': 6, 'pentagon': 6, 'cross': 6, 'star': 6, 'hexagon': 3, 'octagon': 3}","{('triangle', 'orange'): 1, ('triangle', 'black'): 1, ('triangle', 'green'): 2, ('triangle', 'blue'): 1, ('triangle', 'purple'): 1, ('pentagon', 'purple'): 1, ('pentagon', 'orange'): 1, ('pentagon', 'blue'): 1, ('pentagon', 'red'): 1, ('pentagon', 'black'): 1, ('pentagon', 'gray'): 1, ('cross', 'black'): 1, ('cross', 'yellow'): 1, ('cross', 'gray'): 2, ('cross', 'purple'): 1, ('cross', 'green'): 1, ('star', 'green'): 1, ('star', 'yellow'): 2, ('star', 'purple'): 1, ('star', 'orange'): 1, ('star', 'gray'): 1, ('hexagon', 'orange'): 1, ('hexagon', 'blue'): 1, ('hexagon', 'green'): 1, ('octagon', 'gray'): 2, ('octagon', 'blue'): 1}","(6, 6)"
+87.svg,"{'triangle': 3, 'star': 4, 'pentagon': 3, 'hexagon': 1, 'cross': 3, 'octagon': 4}","{('triangle', 'purple'): 1, ('triangle', 'gray'): 1, ('triangle', 'black'): 1, ('star', 'green'): 1, ('star', 'blue'): 1, ('star', 'red'): 1, ('star', 'gray'): 1, ('pentagon', 'red'): 1, ('pentagon', 'orange'): 1, ('pentagon', 'yellow'): 1, ('hexagon', 'red'): 1, ('cross', 'black'): 1, ('cross', 'green'): 1, ('cross', 'gray'): 1, ('octagon', 'purple'): 2, ('octagon', 'yellow'): 1, ('octagon', 'green'): 1}","(6, 6)"
+88.svg,"{'star': 5, 'octagon': 3, 'cross': 1, 'pentagon': 3, 'hexagon': 4, 'triangle': 3}","{('star', 'green'): 1, ('star', 'purple'): 2, ('star', 'blue'): 1, ('star', 'black'): 1, ('octagon', 'black'): 1, ('octagon', 'yellow'): 1, ('octagon', 'purple'): 1, ('cross', 'green'): 1, ('pentagon', 'gray'): 1, ('pentagon', 'blue'): 1, ('pentagon', 'purple'): 1, ('hexagon', 'gray'): 2, ('hexagon', 'purple'): 1, ('hexagon', 'black'): 1, ('triangle', 'orange'): 2, ('triangle', 'gray'): 1}","(6, 6)"
+89.svg,"{'triangle': 2, 'star': 5, 'hexagon': 1, 'pentagon': 4, 'cross': 1, 'octagon': 3}","{('triangle', 'red'): 1, ('triangle', 'black'): 1, ('star', 'green'): 3, ('star', 'blue'): 1, ('star', 'yellow'): 1, ('hexagon', 'yellow'): 1, ('pentagon', 'blue'): 1, ('pentagon', 'yellow'): 2, ('pentagon', 'black'): 1, ('cross', 'yellow'): 1, ('octagon', 'purple'): 2, ('octagon', 'yellow'): 1}","(6, 6)"
diff --git a/2D_DoYouSeeMe/color_and_shape_disambiguation/dataset_info.csv b/2D_DoYouSeeMe/color_and_shape_disambiguation/dataset_info.csv
new file mode 100644
index 0000000000000000000000000000000000000000..328702420cd0566fd2051f95f964197f7deeffd1
--- /dev/null
+++ b/2D_DoYouSeeMe/color_and_shape_disambiguation/dataset_info.csv
@@ -0,0 +1,409 @@
+filename,question,answer,sweep
+0.svg,Count the number of pentagon's that are yellow.,1,"(2, 2)"
+0.svg,Count the number of pentagon's that are red.,1,"(2, 2)"
+1.svg,Count the number of star's that are green.,1,"(2, 2)"
+1.svg,Count the number of star's that are red.,1,"(2, 2)"
+2.svg,Count the number of triangle's that are gray.,1,"(2, 2)"
+2.svg,Count the number of pentagon's that are purple.,1,"(2, 2)"
+3.svg,Count the number of cross's that are purple.,1,"(2, 2)"
+4.svg,Count the number of triangle's that are purple.,1,"(2, 2)"
+4.svg,Count the number of cross's that are gray.,1,"(2, 2)"
+5.svg,Count the number of star's that are green.,1,"(2, 2)"
+5.svg,Count the number of star's that are black.,1,"(2, 2)"
+6.svg,Count the number of star's that are red.,1,"(2, 2)"
+7.svg,Count the number of pentagon's that are black.,1,"(2, 2)"
+7.svg,Count the number of triangle's that are green.,1,"(2, 2)"
+8.svg,Count the number of cross's that are black.,1,"(2, 2)"
+8.svg,Count the number of triangle's that are orange.,1,"(2, 2)"
+9.svg,Count the number of hexagon's that are orange.,1,"(2, 2)"
+9.svg,Count the number of cross's that are gray.,1,"(2, 2)"
+10.svg,Count the number of triangle's that are yellow.,1,"(2, 4)"
+11.svg,Count the number of star's that are black.,1,"(2, 4)"
+11.svg,Count the number of star's that are blue.,1,"(2, 4)"
+12.svg,Count the number of hexagon's that are yellow.,1,"(2, 4)"
+12.svg,Count the number of cross's that are green.,2,"(2, 4)"
+12.svg,Count the number of hexagon's that are blue.,2,"(2, 4)"
+13.svg,Count the number of pentagon's that are blue.,1,"(2, 4)"
+13.svg,Count the number of star's that are orange.,1,"(2, 4)"
+14.svg,Count the number of star's that are blue.,2,"(2, 4)"
+14.svg,Count the number of star's that are yellow.,1,"(2, 4)"
+15.svg,Count the number of pentagon's that are purple.,1,"(2, 4)"
+15.svg,Count the number of triangle's that are green.,1,"(2, 4)"
+15.svg,Count the number of pentagon's that are red.,1,"(2, 4)"
+16.svg,Count the number of triangle's that are red.,1,"(2, 4)"
+16.svg,Count the number of triangle's that are gray.,1,"(2, 4)"
+17.svg,Count the number of pentagon's that are blue.,1,"(2, 4)"
+17.svg,Count the number of cross's that are green.,1,"(2, 4)"
+18.svg,Count the number of hexagon's that are purple.,1,"(2, 4)"
+18.svg,Count the number of cross's that are black.,1,"(2, 4)"
+18.svg,Count the number of cross's that are purple.,1,"(2, 4)"
+19.svg,Count the number of octagon's that are orange.,1,"(2, 4)"
+19.svg,Count the number of hexagon's that are red.,1,"(2, 4)"
+20.svg,Count the number of octagon's that are purple.,1,"(2, 6)"
+20.svg,Count the number of triangle's that are green.,1,"(2, 6)"
+20.svg,Count the number of triangle's that are purple.,1,"(2, 6)"
+20.svg,Count the number of octagon's that are gray.,1,"(2, 6)"
+20.svg,Count the number of octagon's that are black.,1,"(2, 6)"
+21.svg,Count the number of octagon's that are green.,1,"(2, 6)"
+21.svg,Count the number of pentagon's that are red.,1,"(2, 6)"
+21.svg,Count the number of pentagon's that are orange.,2,"(2, 6)"
+22.svg,Count the number of triangle's that are gray.,1,"(2, 6)"
+22.svg,Count the number of triangle's that are red.,1,"(2, 6)"
+23.svg,Count the number of octagon's that are red.,2,"(2, 6)"
+23.svg,Count the number of octagon's that are yellow.,1,"(2, 6)"
+23.svg,Count the number of octagon's that are black.,1,"(2, 6)"
+24.svg,Count the number of triangle's that are purple.,1,"(2, 6)"
+24.svg,Count the number of star's that are green.,2,"(2, 6)"
+25.svg,Count the number of octagon's that are orange.,1,"(2, 6)"
+25.svg,Count the number of octagon's that are yellow.,1,"(2, 6)"
+25.svg,Count the number of hexagon's that are purple.,1,"(2, 6)"
+25.svg,Count the number of hexagon's that are black.,1,"(2, 6)"
+26.svg,Count the number of pentagon's that are orange.,1,"(2, 6)"
+26.svg,Count the number of pentagon's that are black.,1,"(2, 6)"
+26.svg,Count the number of pentagon's that are gray.,1,"(2, 6)"
+26.svg,Count the number of hexagon's that are orange.,2,"(2, 6)"
+27.svg,Count the number of cross's that are orange.,2,"(2, 6)"
+27.svg,Count the number of star's that are black.,1,"(2, 6)"
+28.svg,Count the number of hexagon's that are yellow.,1,"(2, 6)"
+28.svg,Count the number of star's that are yellow.,1,"(2, 6)"
+28.svg,Count the number of hexagon's that are green.,1,"(2, 6)"
+29.svg,Count the number of triangle's that are gray.,1,"(2, 6)"
+29.svg,Count the number of triangle's that are blue.,1,"(2, 6)"
+29.svg,Count the number of triangle's that are black.,1,"(2, 6)"
+30.svg,Count the number of pentagon's that are red.,1,"(4, 2)"
+30.svg,Count the number of octagon's that are yellow.,1,"(4, 2)"
+30.svg,Count the number of hexagon's that are yellow.,1,"(4, 2)"
+31.svg,Count the number of star's that are red.,1,"(4, 2)"
+31.svg,Count the number of cross's that are blue.,1,"(4, 2)"
+31.svg,Count the number of star's that are orange.,1,"(4, 2)"
+32.svg,Count the number of star's that are yellow.,1,"(4, 2)"
+32.svg,Count the number of hexagon's that are black.,1,"(4, 2)"
+32.svg,Count the number of octagon's that are purple.,1,"(4, 2)"
+32.svg,Count the number of star's that are blue.,1,"(4, 2)"
+33.svg,Count the number of star's that are orange.,1,"(4, 2)"
+33.svg,Count the number of pentagon's that are black.,1,"(4, 2)"
+33.svg,Count the number of pentagon's that are blue.,1,"(4, 2)"
+34.svg,Count the number of pentagon's that are red.,1,"(4, 2)"
+34.svg,Count the number of hexagon's that are yellow.,1,"(4, 2)"
+34.svg,Count the number of triangle's that are red.,1,"(4, 2)"
+35.svg,Count the number of cross's that are gray.,1,"(4, 2)"
+35.svg,Count the number of triangle's that are purple.,1,"(4, 2)"
+35.svg,Count the number of cross's that are green.,1,"(4, 2)"
+35.svg,Count the number of octagon's that are blue.,1,"(4, 2)"
+36.svg,Count the number of star's that are yellow.,1,"(4, 2)"
+36.svg,Count the number of hexagon's that are red.,1,"(4, 2)"
+37.svg,Count the number of hexagon's that are green.,1,"(4, 2)"
+37.svg,Count the number of octagon's that are green.,1,"(4, 2)"
+37.svg,Count the number of octagon's that are red.,1,"(4, 2)"
+38.svg,Count the number of cross's that are red.,1,"(4, 2)"
+38.svg,Count the number of hexagon's that are gray.,1,"(4, 2)"
+38.svg,Count the number of cross's that are blue.,1,"(4, 2)"
+38.svg,Count the number of pentagon's that are blue.,1,"(4, 2)"
+39.svg,Count the number of hexagon's that are black.,1,"(4, 2)"
+39.svg,Count the number of pentagon's that are green.,1,"(4, 2)"
+39.svg,Count the number of pentagon's that are red.,1,"(4, 2)"
+39.svg,Count the number of octagon's that are green.,1,"(4, 2)"
+40.svg,Count the number of hexagon's that are purple.,1,"(4, 4)"
+40.svg,Count the number of pentagon's that are gray.,1,"(4, 4)"
+40.svg,Count the number of pentagon's that are purple.,1,"(4, 4)"
+40.svg,Count the number of triangle's that are red.,1,"(4, 4)"
+40.svg,Count the number of pentagon's that are blue.,1,"(4, 4)"
+41.svg,Count the number of triangle's that are orange.,1,"(4, 4)"
+41.svg,Count the number of octagon's that are red.,1,"(4, 4)"
+41.svg,Count the number of octagon's that are black.,1,"(4, 4)"
+41.svg,Count the number of cross's that are purple.,1,"(4, 4)"
+41.svg,Count the number of triangle's that are black.,1,"(4, 4)"
+42.svg,Count the number of octagon's that are yellow.,1,"(4, 4)"
+42.svg,Count the number of star's that are gray.,1,"(4, 4)"
+42.svg,Count the number of cross's that are orange.,1,"(4, 4)"
+42.svg,Count the number of star's that are black.,1,"(4, 4)"
+43.svg,Count the number of octagon's that are gray.,1,"(4, 4)"
+43.svg,Count the number of star's that are purple.,2,"(4, 4)"
+43.svg,Count the number of hexagon's that are gray.,1,"(4, 4)"
+43.svg,Count the number of pentagon's that are red.,2,"(4, 4)"
+44.svg,Count the number of pentagon's that are orange.,1,"(4, 4)"
+44.svg,Count the number of triangle's that are black.,1,"(4, 4)"
+44.svg,Count the number of triangle's that are green.,1,"(4, 4)"
+44.svg,Count the number of pentagon's that are yellow.,1,"(4, 4)"
+44.svg,Count the number of pentagon's that are green.,1,"(4, 4)"
+45.svg,Count the number of hexagon's that are yellow.,1,"(4, 4)"
+45.svg,Count the number of pentagon's that are purple.,1,"(4, 4)"
+45.svg,Count the number of triangle's that are yellow.,1,"(4, 4)"
+45.svg,Count the number of cross's that are blue.,1,"(4, 4)"
+45.svg,Count the number of cross's that are purple.,1,"(4, 4)"
+46.svg,Count the number of hexagon's that are red.,1,"(4, 4)"
+46.svg,Count the number of hexagon's that are purple.,2,"(4, 4)"
+46.svg,Count the number of star's that are blue.,1,"(4, 4)"
+46.svg,Count the number of octagon's that are yellow.,2,"(4, 4)"
+46.svg,Count the number of star's that are purple.,1,"(4, 4)"
+47.svg,Count the number of pentagon's that are red.,1,"(4, 4)"
+47.svg,Count the number of pentagon's that are purple.,1,"(4, 4)"
+47.svg,Count the number of star's that are blue.,1,"(4, 4)"
+47.svg,Count the number of cross's that are black.,1,"(4, 4)"
+48.svg,Count the number of octagon's that are blue.,1,"(4, 4)"
+48.svg,Count the number of pentagon's that are yellow.,2,"(4, 4)"
+48.svg,Count the number of triangle's that are blue.,1,"(4, 4)"
+48.svg,Count the number of cross's that are green.,1,"(4, 4)"
+48.svg,Count the number of octagon's that are black.,1,"(4, 4)"
+49.svg,Count the number of octagon's that are black.,1,"(4, 4)"
+49.svg,Count the number of cross's that are purple.,1,"(4, 4)"
+49.svg,Count the number of cross's that are red.,1,"(4, 4)"
+49.svg,Count the number of pentagon's that are orange.,2,"(4, 4)"
+49.svg,Count the number of hexagon's that are black.,1,"(4, 4)"
+50.svg,Count the number of star's that are gray.,2,"(4, 6)"
+50.svg,Count the number of hexagon's that are green.,2,"(4, 6)"
+50.svg,Count the number of hexagon's that are black.,1,"(4, 6)"
+50.svg,Count the number of star's that are green.,1,"(4, 6)"
+50.svg,Count the number of triangle's that are blue.,1,"(4, 6)"
+50.svg,Count the number of star's that are blue.,1,"(4, 6)"
+51.svg,Count the number of cross's that are red.,1,"(4, 6)"
+51.svg,Count the number of octagon's that are black.,1,"(4, 6)"
+51.svg,Count the number of star's that are gray.,1,"(4, 6)"
+51.svg,Count the number of cross's that are purple.,1,"(4, 6)"
+51.svg,Count the number of cross's that are yellow.,1,"(4, 6)"
+51.svg,Count the number of octagon's that are orange.,1,"(4, 6)"
+52.svg,Count the number of pentagon's that are purple.,1,"(4, 6)"
+52.svg,Count the number of star's that are purple.,1,"(4, 6)"
+52.svg,Count the number of star's that are blue.,1,"(4, 6)"
+52.svg,Count the number of hexagon's that are black.,2,"(4, 6)"
+52.svg,Count the number of cross's that are blue.,1,"(4, 6)"
+52.svg,Count the number of cross's that are orange.,1,"(4, 6)"
+53.svg,Count the number of pentagon's that are blue.,2,"(4, 6)"
+53.svg,Count the number of pentagon's that are purple.,1,"(4, 6)"
+53.svg,Count the number of cross's that are black.,1,"(4, 6)"
+53.svg,Count the number of star's that are gray.,1,"(4, 6)"
+53.svg,Count the number of hexagon's that are black.,1,"(4, 6)"
+53.svg,Count the number of pentagon's that are yellow.,1,"(4, 6)"
+54.svg,Count the number of hexagon's that are black.,1,"(4, 6)"
+54.svg,Count the number of hexagon's that are purple.,1,"(4, 6)"
+54.svg,Count the number of octagon's that are gray.,1,"(4, 6)"
+54.svg,Count the number of pentagon's that are gray.,1,"(4, 6)"
+54.svg,Count the number of hexagon's that are green.,1,"(4, 6)"
+54.svg,Count the number of hexagon's that are yellow.,1,"(4, 6)"
+55.svg,Count the number of hexagon's that are yellow.,1,"(4, 6)"
+55.svg,Count the number of pentagon's that are purple.,1,"(4, 6)"
+55.svg,Count the number of triangle's that are blue.,1,"(4, 6)"
+55.svg,Count the number of triangle's that are black.,1,"(4, 6)"
+55.svg,Count the number of pentagon's that are black.,1,"(4, 6)"
+56.svg,Count the number of cross's that are purple.,1,"(4, 6)"
+56.svg,Count the number of star's that are blue.,1,"(4, 6)"
+56.svg,Count the number of triangle's that are blue.,1,"(4, 6)"
+56.svg,Count the number of star's that are gray.,2,"(4, 6)"
+56.svg,Count the number of star's that are yellow.,2,"(4, 6)"
+56.svg,Count the number of star's that are black.,1,"(4, 6)"
+57.svg,Count the number of octagon's that are gray.,1,"(4, 6)"
+57.svg,Count the number of hexagon's that are blue.,1,"(4, 6)"
+57.svg,Count the number of octagon's that are green.,2,"(4, 6)"
+57.svg,Count the number of octagon's that are red.,1,"(4, 6)"
+57.svg,Count the number of triangle's that are green.,1,"(4, 6)"
+58.svg,Count the number of octagon's that are red.,2,"(4, 6)"
+58.svg,Count the number of octagon's that are yellow.,1,"(4, 6)"
+58.svg,Count the number of cross's that are red.,1,"(4, 6)"
+58.svg,Count the number of hexagon's that are black.,1,"(4, 6)"
+58.svg,Count the number of octagon's that are purple.,2,"(4, 6)"
+59.svg,Count the number of hexagon's that are green.,1,"(4, 6)"
+59.svg,Count the number of pentagon's that are gray.,2,"(4, 6)"
+59.svg,Count the number of hexagon's that are red.,1,"(4, 6)"
+59.svg,Count the number of hexagon's that are blue.,2,"(4, 6)"
+59.svg,Count the number of pentagon's that are blue.,2,"(4, 6)"
+60.svg,Count the number of star's that are green.,1,"(6, 2)"
+60.svg,Count the number of hexagon's that are green.,1,"(6, 2)"
+60.svg,Count the number of pentagon's that are green.,1,"(6, 2)"
+60.svg,Count the number of triangle's that are green.,1,"(6, 2)"
+61.svg,Count the number of cross's that are orange.,1,"(6, 2)"
+61.svg,Count the number of pentagon's that are black.,1,"(6, 2)"
+61.svg,Count the number of cross's that are purple.,1,"(6, 2)"
+61.svg,Count the number of star's that are orange.,1,"(6, 2)"
+61.svg,Count the number of pentagon's that are purple.,1,"(6, 2)"
+62.svg,Count the number of hexagon's that are black.,1,"(6, 2)"
+62.svg,Count the number of triangle's that are purple.,1,"(6, 2)"
+62.svg,Count the number of pentagon's that are gray.,1,"(6, 2)"
+62.svg,Count the number of cross's that are yellow.,1,"(6, 2)"
+63.svg,Count the number of triangle's that are blue.,1,"(6, 2)"
+63.svg,Count the number of cross's that are red.,1,"(6, 2)"
+63.svg,Count the number of hexagon's that are gray.,1,"(6, 2)"
+63.svg,Count the number of octagon's that are orange.,1,"(6, 2)"
+63.svg,Count the number of cross's that are blue.,1,"(6, 2)"
+64.svg,Count the number of cross's that are gray.,1,"(6, 2)"
+64.svg,Count the number of pentagon's that are black.,1,"(6, 2)"
+64.svg,Count the number of hexagon's that are red.,1,"(6, 2)"
+64.svg,Count the number of triangle's that are yellow.,1,"(6, 2)"
+65.svg,Count the number of octagon's that are black.,1,"(6, 2)"
+65.svg,Count the number of pentagon's that are green.,1,"(6, 2)"
+65.svg,Count the number of hexagon's that are purple.,1,"(6, 2)"
+65.svg,Count the number of cross's that are red.,1,"(6, 2)"
+65.svg,Count the number of pentagon's that are gray.,1,"(6, 2)"
+66.svg,Count the number of pentagon's that are yellow.,1,"(6, 2)"
+66.svg,Count the number of cross's that are black.,1,"(6, 2)"
+66.svg,Count the number of cross's that are red.,1,"(6, 2)"
+66.svg,Count the number of octagon's that are green.,1,"(6, 2)"
+67.svg,Count the number of hexagon's that are purple.,1,"(6, 2)"
+67.svg,Count the number of star's that are black.,1,"(6, 2)"
+67.svg,Count the number of octagon's that are green.,1,"(6, 2)"
+67.svg,Count the number of triangle's that are orange.,1,"(6, 2)"
+68.svg,Count the number of cross's that are purple.,1,"(6, 2)"
+68.svg,Count the number of triangle's that are purple.,1,"(6, 2)"
+68.svg,Count the number of cross's that are red.,1,"(6, 2)"
+68.svg,Count the number of star's that are purple.,2,"(6, 2)"
+69.svg,Count the number of octagon's that are blue.,1,"(6, 2)"
+69.svg,Count the number of triangle's that are purple.,1,"(6, 2)"
+69.svg,Count the number of pentagon's that are red.,1,"(6, 2)"
+69.svg,Count the number of triangle's that are gray.,1,"(6, 2)"
+69.svg,Count the number of star's that are yellow.,1,"(6, 2)"
+70.svg,Count the number of hexagon's that are green.,1,"(6, 4)"
+70.svg,Count the number of hexagon's that are black.,1,"(6, 4)"
+70.svg,Count the number of triangle's that are red.,1,"(6, 4)"
+70.svg,Count the number of octagon's that are blue.,1,"(6, 4)"
+70.svg,Count the number of star's that are red.,2,"(6, 4)"
+70.svg,Count the number of octagon's that are black.,1,"(6, 4)"
+70.svg,Count the number of pentagon's that are orange.,1,"(6, 4)"
+71.svg,Count the number of hexagon's that are black.,1,"(6, 4)"
+71.svg,Count the number of triangle's that are yellow.,1,"(6, 4)"
+71.svg,Count the number of hexagon's that are red.,1,"(6, 4)"
+71.svg,Count the number of cross's that are black.,1,"(6, 4)"
+71.svg,Count the number of hexagon's that are gray.,1,"(6, 4)"
+71.svg,Count the number of triangle's that are black.,1,"(6, 4)"
+71.svg,Count the number of octagon's that are black.,1,"(6, 4)"
+72.svg,Count the number of pentagon's that are gray.,2,"(6, 4)"
+72.svg,Count the number of octagon's that are green.,1,"(6, 4)"
+72.svg,Count the number of pentagon's that are green.,1,"(6, 4)"
+72.svg,Count the number of octagon's that are purple.,1,"(6, 4)"
+72.svg,Count the number of octagon's that are red.,1,"(6, 4)"
+72.svg,Count the number of cross's that are blue.,1,"(6, 4)"
+72.svg,Count the number of triangle's that are black.,1,"(6, 4)"
+72.svg,Count the number of cross's that are gray.,1,"(6, 4)"
+73.svg,Count the number of star's that are purple.,1,"(6, 4)"
+73.svg,Count the number of star's that are gray.,1,"(6, 4)"
+73.svg,Count the number of octagon's that are black.,1,"(6, 4)"
+73.svg,Count the number of pentagon's that are yellow.,2,"(6, 4)"
+73.svg,Count the number of hexagon's that are gray.,1,"(6, 4)"
+73.svg,Count the number of star's that are yellow.,1,"(6, 4)"
+73.svg,Count the number of pentagon's that are blue.,1,"(6, 4)"
+74.svg,Count the number of octagon's that are red.,1,"(6, 4)"
+74.svg,Count the number of star's that are yellow.,1,"(6, 4)"
+74.svg,Count the number of hexagon's that are blue.,2,"(6, 4)"
+74.svg,Count the number of cross's that are yellow.,1,"(6, 4)"
+74.svg,Count the number of pentagon's that are gray.,1,"(6, 4)"
+74.svg,Count the number of cross's that are blue.,2,"(6, 4)"
+75.svg,Count the number of octagon's that are gray.,1,"(6, 4)"
+75.svg,Count the number of octagon's that are yellow.,1,"(6, 4)"
+75.svg,Count the number of cross's that are blue.,1,"(6, 4)"
+75.svg,Count the number of pentagon's that are orange.,1,"(6, 4)"
+75.svg,Count the number of hexagon's that are black.,1,"(6, 4)"
+75.svg,Count the number of star's that are blue.,1,"(6, 4)"
+75.svg,Count the number of octagon's that are blue.,1,"(6, 4)"
+75.svg,Count the number of pentagon's that are purple.,1,"(6, 4)"
+76.svg,Count the number of octagon's that are black.,1,"(6, 4)"
+76.svg,Count the number of octagon's that are blue.,1,"(6, 4)"
+76.svg,Count the number of star's that are red.,1,"(6, 4)"
+76.svg,Count the number of pentagon's that are gray.,1,"(6, 4)"
+76.svg,Count the number of cross's that are orange.,2,"(6, 4)"
+76.svg,Count the number of pentagon's that are red.,1,"(6, 4)"
+76.svg,Count the number of triangle's that are purple.,1,"(6, 4)"
+76.svg,Count the number of cross's that are red.,1,"(6, 4)"
+77.svg,Count the number of cross's that are yellow.,1,"(6, 4)"
+77.svg,Count the number of cross's that are black.,2,"(6, 4)"
+77.svg,Count the number of octagon's that are blue.,1,"(6, 4)"
+77.svg,Count the number of triangle's that are blue.,1,"(6, 4)"
+77.svg,Count the number of hexagon's that are red.,1,"(6, 4)"
+78.svg,Count the number of star's that are red.,1,"(6, 4)"
+78.svg,Count the number of triangle's that are black.,1,"(6, 4)"
+78.svg,Count the number of pentagon's that are blue.,1,"(6, 4)"
+78.svg,Count the number of triangle's that are purple.,1,"(6, 4)"
+78.svg,Count the number of hexagon's that are green.,1,"(6, 4)"
+78.svg,Count the number of triangle's that are blue.,1,"(6, 4)"
+78.svg,Count the number of pentagon's that are orange.,1,"(6, 4)"
+78.svg,Count the number of hexagon's that are orange.,1,"(6, 4)"
+78.svg,Count the number of star's that are black.,1,"(6, 4)"
+79.svg,Count the number of triangle's that are black.,1,"(6, 4)"
+79.svg,Count the number of triangle's that are gray.,1,"(6, 4)"
+79.svg,Count the number of pentagon's that are green.,1,"(6, 4)"
+79.svg,Count the number of octagon's that are purple.,1,"(6, 4)"
+79.svg,Count the number of pentagon's that are yellow.,2,"(6, 4)"
+79.svg,Count the number of octagon's that are green.,1,"(6, 4)"
+79.svg,Count the number of cross's that are gray.,1,"(6, 4)"
+80.svg,Count the number of octagon's that are green.,1,"(6, 6)"
+80.svg,Count the number of cross's that are black.,1,"(6, 6)"
+80.svg,Count the number of triangle's that are black.,1,"(6, 6)"
+80.svg,Count the number of star's that are purple.,1,"(6, 6)"
+80.svg,Count the number of star's that are blue.,4,"(6, 6)"
+81.svg,Count the number of pentagon's that are gray.,2,"(6, 6)"
+81.svg,Count the number of cross's that are green.,2,"(6, 6)"
+81.svg,Count the number of octagon's that are gray.,1,"(6, 6)"
+81.svg,Count the number of cross's that are orange.,1,"(6, 6)"
+81.svg,Count the number of hexagon's that are black.,1,"(6, 6)"
+81.svg,Count the number of octagon's that are black.,1,"(6, 6)"
+81.svg,Count the number of hexagon's that are orange.,1,"(6, 6)"
+81.svg,Count the number of pentagon's that are purple.,1,"(6, 6)"
+81.svg,Count the number of cross's that are blue.,1,"(6, 6)"
+82.svg,Count the number of cross's that are blue.,1,"(6, 6)"
+82.svg,Count the number of star's that are blue.,1,"(6, 6)"
+82.svg,Count the number of octagon's that are blue.,1,"(6, 6)"
+82.svg,Count the number of cross's that are green.,1,"(6, 6)"
+82.svg,Count the number of hexagon's that are orange.,2,"(6, 6)"
+82.svg,Count the number of octagon's that are red.,1,"(6, 6)"
+82.svg,Count the number of cross's that are orange.,1,"(6, 6)"
+82.svg,Count the number of hexagon's that are yellow.,2,"(6, 6)"
+82.svg,Count the number of hexagon's that are red.,1,"(6, 6)"
+82.svg,Count the number of cross's that are black.,1,"(6, 6)"
+83.svg,Count the number of triangle's that are orange.,1,"(6, 6)"
+83.svg,Count the number of octagon's that are gray.,1,"(6, 6)"
+83.svg,Count the number of octagon's that are orange.,1,"(6, 6)"
+83.svg,Count the number of hexagon's that are yellow.,1,"(6, 6)"
+83.svg,Count the number of triangle's that are purple.,1,"(6, 6)"
+83.svg,Count the number of octagon's that are purple.,1,"(6, 6)"
+83.svg,Count the number of hexagon's that are orange.,1,"(6, 6)"
+84.svg,Count the number of triangle's that are gray.,1,"(6, 6)"
+84.svg,Count the number of cross's that are red.,1,"(6, 6)"
+84.svg,Count the number of octagon's that are orange.,1,"(6, 6)"
+84.svg,Count the number of hexagon's that are red.,2,"(6, 6)"
+84.svg,Count the number of cross's that are orange.,1,"(6, 6)"
+84.svg,Count the number of hexagon's that are purple.,1,"(6, 6)"
+84.svg,Count the number of triangle's that are blue.,1,"(6, 6)"
+84.svg,Count the number of triangle's that are red.,2,"(6, 6)"
+85.svg,Count the number of hexagon's that are purple.,1,"(6, 6)"
+85.svg,Count the number of cross's that are orange.,2,"(6, 6)"
+85.svg,Count the number of octagon's that are yellow.,1,"(6, 6)"
+85.svg,Count the number of cross's that are purple.,1,"(6, 6)"
+85.svg,Count the number of hexagon's that are red.,3,"(6, 6)"
+85.svg,Count the number of triangle's that are blue.,1,"(6, 6)"
+85.svg,Count the number of pentagon's that are red.,1,"(6, 6)"
+85.svg,Count the number of triangle's that are red.,2,"(6, 6)"
+85.svg,Count the number of star's that are blue.,1,"(6, 6)"
+85.svg,Count the number of octagon's that are red.,1,"(6, 6)"
+86.svg,Count the number of cross's that are green.,1,"(6, 6)"
+86.svg,Count the number of triangle's that are blue.,1,"(6, 6)"
+86.svg,Count the number of hexagon's that are blue.,1,"(6, 6)"
+86.svg,Count the number of octagon's that are blue.,1,"(6, 6)"
+86.svg,Count the number of cross's that are gray.,2,"(6, 6)"
+86.svg,Count the number of triangle's that are black.,1,"(6, 6)"
+86.svg,Count the number of pentagon's that are black.,1,"(6, 6)"
+86.svg,Count the number of pentagon's that are gray.,1,"(6, 6)"
+86.svg,Count the number of triangle's that are purple.,1,"(6, 6)"
+86.svg,Count the number of pentagon's that are purple.,1,"(6, 6)"
+86.svg,Count the number of cross's that are yellow.,1,"(6, 6)"
+86.svg,Count the number of hexagon's that are green.,1,"(6, 6)"
+86.svg,Count the number of star's that are purple.,1,"(6, 6)"
+87.svg,Count the number of triangle's that are black.,1,"(6, 6)"
+87.svg,Count the number of octagon's that are green.,1,"(6, 6)"
+87.svg,Count the number of cross's that are green.,1,"(6, 6)"
+87.svg,Count the number of triangle's that are gray.,1,"(6, 6)"
+87.svg,Count the number of star's that are green.,1,"(6, 6)"
+87.svg,Count the number of cross's that are black.,1,"(6, 6)"
+87.svg,Count the number of octagon's that are purple.,2,"(6, 6)"
+87.svg,Count the number of triangle's that are purple.,1,"(6, 6)"
+87.svg,Count the number of star's that are gray.,1,"(6, 6)"
+88.svg,Count the number of star's that are green.,1,"(6, 6)"
+88.svg,Count the number of star's that are purple.,2,"(6, 6)"
+88.svg,Count the number of octagon's that are purple.,1,"(6, 6)"
+88.svg,Count the number of pentagon's that are gray.,1,"(6, 6)"
+88.svg,Count the number of hexagon's that are purple.,1,"(6, 6)"
+88.svg,Count the number of octagon's that are black.,1,"(6, 6)"
+88.svg,Count the number of cross's that are green.,1,"(6, 6)"
+88.svg,Count the number of pentagon's that are blue.,1,"(6, 6)"
+89.svg,Count the number of cross's that are yellow.,1,"(6, 6)"
+89.svg,Count the number of octagon's that are purple.,2,"(6, 6)"
+89.svg,Count the number of star's that are blue.,1,"(6, 6)"
+89.svg,Count the number of pentagon's that are blue.,1,"(6, 6)"
+89.svg,Count the number of triangle's that are black.,1,"(6, 6)"
+89.svg,Count the number of star's that are green.,3,"(6, 6)"
diff --git a/2D_DoYouSeeMe/geometric_dataset/1.png b/2D_DoYouSeeMe/geometric_dataset/1.png
new file mode 100644
index 0000000000000000000000000000000000000000..05869726d9ef4da2c2758661405914b212d798b9
--- /dev/null
+++ b/2D_DoYouSeeMe/geometric_dataset/1.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:32c3e6b6438123ce2fee1398b27729a5d13a88a714a7e4718354f88698e63614
+size 17778
diff --git a/2D_DoYouSeeMe/geometric_dataset/100.png b/2D_DoYouSeeMe/geometric_dataset/100.png
new file mode 100644
index 0000000000000000000000000000000000000000..e6b03be36c1c6cf9f619de888805e0833125f4ac
--- /dev/null
+++ b/2D_DoYouSeeMe/geometric_dataset/100.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5f9e078f273358ef535ae12d0befaf3b8ea218cf0097dba26f92face946784ad
+size 46101
diff --git a/2D_DoYouSeeMe/geometric_dataset/50.png b/2D_DoYouSeeMe/geometric_dataset/50.png
new file mode 100644
index 0000000000000000000000000000000000000000..e6b03be36c1c6cf9f619de888805e0833125f4ac
--- /dev/null
+++ b/2D_DoYouSeeMe/geometric_dataset/50.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5f9e078f273358ef535ae12d0befaf3b8ea218cf0097dba26f92face946784ad
+size 46101
diff --git a/2D_DoYouSeeMe/geometric_dataset/dataset_creator.py b/2D_DoYouSeeMe/geometric_dataset/dataset_creator.py
new file mode 100644
index 0000000000000000000000000000000000000000..a5c67fbc49921ec5529a95edab0e6bf488dcd5ae
--- /dev/null
+++ b/2D_DoYouSeeMe/geometric_dataset/dataset_creator.py
@@ -0,0 +1,40 @@
+# Copyright (c) Microsoft Corporation.
+# Licensed under the MIT license.
+
+import ast
+import pandas as pd
+import os
+import math
+import random
+random.seed(0)
+
+
+dir_path = "visual_discrimination/sweep/geometric_dataset"
+df = pd.read_csv(os.path.join(dir_path, "dataset_dump.csv"))
+
+'''
+The dataset_dump.csv file contains the following columns:
+1. filename: SVG filename of the image
+2. shape_dictionary: It contains shape name as the key and corresponding count as the value
+'''
+
+data = []
+for index, row in df.iterrows():
+ shape_dict = ast.literal_eval(row['shape_dictionary'])
+ filename = row['filename']
+ sweep = ast.literal_eval(row['sweep'])
+ innerlist = []
+ for shape, count in shape_dict.items():
+ question = f"Count the total number of {shape}s in the image, including each concentric {shape} separately. For example, if there is one {shape} with 2 inner concentric rings, that counts as 3 {shape}s. Respond with only a number."
+ answer = count
+ innerlist.append({
+ 'filename': filename,
+ 'question': question,
+ 'answer': answer,
+ 'sweep': sweep
+ })
+ innerlist = random.sample(innerlist, 1)
+ data.extend(innerlist)
+
+df = pd.DataFrame(data)
+df.to_csv(os.path.join(dir_path, "dataset_info.csv"), index=False)
diff --git a/2D_DoYouSeeMe/geometric_dataset/dataset_dump.csv b/2D_DoYouSeeMe/geometric_dataset/dataset_dump.csv
new file mode 100644
index 0000000000000000000000000000000000000000..f88ded8703b0e57bc32356245241e2f8f9024e27
--- /dev/null
+++ b/2D_DoYouSeeMe/geometric_dataset/dataset_dump.csv
@@ -0,0 +1,241 @@
+filename,shape_dictionary,sweep
+sweep_0_0.svg,"{'hexagon': 3, 'triangle': 4, 'star': 2}","(3, 3, 10)"
+sweep_0_1.svg,"{'octagon': 6, 'star': 3}","(3, 3, 10)"
+sweep_0_2.svg,"{'octagon': 1, 'rectangle': 3, 'hexagon': 3}","(3, 3, 10)"
+sweep_0_3.svg,"{'hexagon': 6, 'octagon': 2}","(3, 3, 10)"
+sweep_0_4.svg,"{'hexagon': 4, 'pentagon': 1, 'triangle': 5}","(3, 3, 10)"
+sweep_0_5.svg,"{'circle': 4, 'rectangle': 2, 'hexagon': 3}","(3, 3, 10)"
+sweep_0_6.svg,"{'pentagon': 1, 'octagon': 2, 'rectangle': 2}","(3, 3, 10)"
+sweep_0_7.svg,"{'circle': 4, 'octagon': 5, 'star': 3}","(3, 3, 10)"
+sweep_0_8.svg,"{'pentagon': 3, 'rectangle': 4, 'star': 3}","(3, 3, 10)"
+sweep_0_9.svg,"{'octagon': 1, 'pentagon': 4, 'hexagon': 3}","(3, 3, 10)"
+sweep_1_0.svg,"{'rectangle': 2, 'triangle': 7, 'octagon': 6}","(3, 3, -20)"
+sweep_1_1.svg,"{'pentagon': 1, 'triangle': 2, 'rectangle': 1}","(3, 3, -20)"
+sweep_1_2.svg,"{'star': 5, 'circle': 5, 'rectangle': 5}","(3, 3, -20)"
+sweep_1_3.svg,"{'triangle': 2, 'hexagon': 4, 'rectangle': 3}","(3, 3, -20)"
+sweep_1_4.svg,"{'octagon': 3, 'circle': 3, 'hexagon': 2}","(3, 3, -20)"
+sweep_1_5.svg,"{'octagon': 1, 'star': 3, 'triangle': 6}","(3, 3, -20)"
+sweep_1_6.svg,"{'hexagon': 4, 'star': 2, 'triangle': 2}","(3, 3, -20)"
+sweep_1_7.svg,"{'hexagon': 3, 'circle': 5, 'rectangle': 1}","(3, 3, -20)"
+sweep_1_8.svg,"{'pentagon': 2, 'octagon': 1, 'circle': 6}","(3, 3, -20)"
+sweep_1_9.svg,"{'rectangle': 5, 'circle': 1, 'pentagon': 4}","(3, 3, -20)"
+sweep_2_0.svg,"{'triangle': 5, 'octagon': 3, 'rectangle': 4}","(3, 3, -30)"
+sweep_2_1.svg,"{'rectangle': 3, 'octagon': 2, 'triangle': 1}","(3, 3, -30)"
+sweep_2_2.svg,"{'octagon': 7, 'pentagon': 5, 'star': 4}","(3, 3, -30)"
+sweep_2_3.svg,"{'circle': 7, 'star': 2, 'rectangle': 3}","(3, 3, -30)"
+sweep_2_4.svg,"{'pentagon': 2, 'circle': 6, 'hexagon': 4}","(3, 3, -30)"
+sweep_2_5.svg,"{'octagon': 1, 'pentagon': 4, 'rectangle': 4}","(3, 3, -30)"
+sweep_2_6.svg,"{'triangle': 3, 'star': 4, 'rectangle': 2}","(3, 3, -30)"
+sweep_2_7.svg,"{'star': 4, 'triangle': 2, 'pentagon': 2}","(3, 3, -30)"
+sweep_2_8.svg,"{'triangle': 2, 'star': 4, 'rectangle': 7}","(3, 3, -30)"
+sweep_2_9.svg,"{'octagon': 1, 'star': 1, 'triangle': 3}","(3, 3, -30)"
+sweep_3_0.svg,"{'pentagon': 4, 'hexagon': 4, 'rectangle': 1}","(3, 3, -40)"
+sweep_3_1.svg,"{'pentagon': 1, 'octagon': 1, 'hexagon': 4}","(3, 3, -40)"
+sweep_3_2.svg,"{'pentagon': 4, 'octagon': 3, 'star': 2}","(3, 3, -40)"
+sweep_3_3.svg,"{'triangle': 1, 'star': 3, 'hexagon': 3}","(3, 3, -40)"
+sweep_3_4.svg,"{'star': 3, 'hexagon': 3, 'triangle': 4}","(3, 3, -40)"
+sweep_3_5.svg,"{'triangle': 1, 'circle': 3, 'hexagon': 1}","(3, 3, -40)"
+sweep_3_6.svg,"{'pentagon': 2, 'octagon': 1, 'rectangle': 4}","(3, 3, -40)"
+sweep_3_7.svg,"{'triangle': 5, 'star': 3, 'pentagon': 2}","(3, 3, -40)"
+sweep_3_8.svg,"{'star': 3, 'octagon': 4, 'pentagon': 4}","(3, 3, -40)"
+sweep_3_9.svg,"{'pentagon': 4, 'star': 4, 'triangle': 1}","(3, 3, -40)"
+sweep_4_0.svg,"{'rectangle': 3, 'pentagon': 4, 'octagon': 1}","(3, 6, 10)"
+sweep_4_1.svg,"{'triangle': 1, 'circle': 5, 'rectangle': 1}","(3, 6, 10)"
+sweep_4_2.svg,"{'triangle': 8, 'pentagon': 1}","(3, 6, 10)"
+sweep_4_3.svg,"{'octagon': 4, 'pentagon': 7, 'star': 2}","(3, 6, 10)"
+sweep_4_4.svg,"{'star': 1, 'circle': 5, 'pentagon': 4}","(3, 6, 10)"
+sweep_4_5.svg,"{'star': 9, 'circle': 3, 'triangle': 1}","(3, 6, 10)"
+sweep_4_6.svg,"{'circle': 1, 'star': 3, 'hexagon': 2}","(3, 6, 10)"
+sweep_4_7.svg,"{'triangle': 5, 'rectangle': 6, 'star': 2}","(3, 6, 10)"
+sweep_4_8.svg,"{'octagon': 3, 'star': 3, 'pentagon': 4}","(3, 6, 10)"
+sweep_4_9.svg,"{'rectangle': 7, 'pentagon': 1, 'circle': 1}","(3, 6, 10)"
+sweep_5_0.svg,"{'hexagon': 2, 'pentagon': 7, 'triangle': 3}","(3, 6, -20)"
+sweep_5_1.svg,"{'triangle': 8, 'octagon': 7, 'rectangle': 7}","(3, 6, -20)"
+sweep_5_2.svg,"{'circle': 4, 'hexagon': 6, 'pentagon': 9}","(3, 6, -20)"
+sweep_5_3.svg,"{'triangle': 7, 'hexagon': 9, 'pentagon': 1}","(3, 6, -20)"
+sweep_5_4.svg,"{'hexagon': 6, 'triangle': 6, 'star': 4}","(3, 6, -20)"
+sweep_5_5.svg,"{'triangle': 8, 'hexagon': 6, 'star': 6}","(3, 6, -20)"
+sweep_5_6.svg,"{'circle': 4, 'pentagon': 6, 'hexagon': 4}","(3, 6, -20)"
+sweep_5_7.svg,"{'hexagon': 2, 'circle': 8, 'star': 7}","(3, 6, -20)"
+sweep_5_8.svg,"{'circle': 6, 'hexagon': 2, 'octagon': 6}","(3, 6, -20)"
+sweep_5_9.svg,"{'circle': 11, 'octagon': 7, 'triangle': 5}","(3, 6, -20)"
+sweep_6_0.svg,"{'star': 2, 'hexagon': 14, 'triangle': 6}","(3, 6, -30)"
+sweep_6_1.svg,"{'pentagon': 4, 'triangle': 2, 'rectangle': 9}","(3, 6, -30)"
+sweep_6_2.svg,"{'star': 6, 'circle': 7, 'hexagon': 9}","(3, 6, -30)"
+sweep_6_3.svg,"{'octagon': 10, 'hexagon': 3, 'circle': 6}","(3, 6, -30)"
+sweep_6_4.svg,"{'triangle': 7, 'pentagon': 4, 'hexagon': 7}","(3, 6, -30)"
+sweep_6_5.svg,"{'circle': 9, 'octagon': 9, 'star': 6}","(3, 6, -30)"
+sweep_6_6.svg,"{'hexagon': 8, 'circle': 9, 'rectangle': 5}","(3, 6, -30)"
+sweep_6_7.svg,"{'rectangle': 1, 'hexagon': 8, 'triangle': 3}","(3, 6, -30)"
+sweep_6_8.svg,"{'star': 5, 'pentagon': 8, 'hexagon': 3}","(3, 6, -30)"
+sweep_6_9.svg,"{'rectangle': 5, 'star': 1, 'pentagon': 7}","(3, 6, -30)"
+sweep_7_0.svg,"{'circle': 8, 'rectangle': 7, 'star': 3}","(3, 6, -40)"
+sweep_7_1.svg,"{'pentagon': 11, 'triangle': 8, 'octagon': 6}","(3, 6, -40)"
+sweep_7_2.svg,"{'octagon': 6, 'hexagon': 2, 'rectangle': 2}","(3, 6, -40)"
+sweep_7_3.svg,"{'rectangle': 1, 'pentagon': 2, 'hexagon': 1}","(3, 6, -40)"
+sweep_7_4.svg,"{'star': 8, 'circle': 2, 'hexagon': 6}","(3, 6, -40)"
+sweep_7_5.svg,"{'pentagon': 1, 'circle': 5, 'hexagon': 6}","(3, 6, -40)"
+sweep_7_6.svg,"{'circle': 6, 'star': 8, 'hexagon': 7}","(3, 6, -40)"
+sweep_7_7.svg,"{'octagon': 5, 'pentagon': 4, 'circle': 3}","(3, 6, -40)"
+sweep_7_8.svg,"{'pentagon': 8, 'circle': 6, 'hexagon': 4}","(3, 6, -40)"
+sweep_7_9.svg,"{'hexagon': 1, 'pentagon': 4, 'circle': 1}","(3, 6, -40)"
+sweep_8_0.svg,"{'pentagon': 5, 'octagon': 2, 'rectangle': 2}","(3, 10, 10)"
+sweep_8_1.svg,"{'rectangle': 8, 'hexagon': 1, 'circle': 4}","(3, 10, 10)"
+sweep_8_2.svg,"{'circle': 11, 'rectangle': 2, 'octagon': 3}","(3, 10, 10)"
+sweep_8_3.svg,"{'star': 10, 'hexagon': 5}","(3, 10, 10)"
+sweep_8_4.svg,"{'star': 1, 'rectangle': 4, 'circle': 2}","(3, 10, 10)"
+sweep_8_5.svg,"{'octagon': 10, 'star': 3}","(3, 10, 10)"
+sweep_8_6.svg,"{'circle': 4, 'star': 1, 'hexagon': 1}","(3, 10, 10)"
+sweep_8_7.svg,"{'octagon': 7, 'pentagon': 4}","(3, 10, 10)"
+sweep_8_8.svg,"{'star': 11, 'pentagon': 3}","(3, 10, 10)"
+sweep_8_9.svg,"{'star': 6, 'octagon': 6}","(3, 10, 10)"
+sweep_9_0.svg,"{'triangle': 14, 'circle': 1, 'hexagon': 11}","(3, 10, -20)"
+sweep_9_1.svg,"{'octagon': 2, 'circle': 3, 'hexagon': 4}","(3, 10, -20)"
+sweep_9_2.svg,"{'pentagon': 5, 'octagon': 20, 'circle': 11}","(3, 10, -20)"
+sweep_9_3.svg,"{'circle': 14, 'rectangle': 11, 'hexagon': 2}","(3, 10, -20)"
+sweep_9_4.svg,"{'circle': 17, 'rectangle': 3, 'hexagon': 7}","(3, 10, -20)"
+sweep_9_5.svg,"{'rectangle': 13, 'hexagon': 7, 'octagon': 10}","(3, 10, -20)"
+sweep_9_6.svg,"{'octagon': 4, 'pentagon': 11, 'star': 4}","(3, 10, -20)"
+sweep_9_7.svg,"{'triangle': 5, 'circle': 5, 'rectangle': 4}","(3, 10, -20)"
+sweep_9_8.svg,"{'triangle': 4, 'hexagon': 8, 'octagon': 14}","(3, 10, -20)"
+sweep_9_9.svg,"{'rectangle': 3, 'star': 12, 'triangle': 6}","(3, 10, -20)"
+sweep_10_0.svg,"{'star': 17, 'pentagon': 11, 'triangle': 8}","(3, 10, -30)"
+sweep_10_1.svg,"{'triangle': 6, 'hexagon': 7, 'octagon': 7}","(3, 10, -30)"
+sweep_10_2.svg,"{'circle': 8, 'star': 9, 'triangle': 4}","(3, 10, -30)"
+sweep_10_3.svg,"{'circle': 3, 'pentagon': 9, 'hexagon': 2}","(3, 10, -30)"
+sweep_10_4.svg,"{'octagon': 14, 'circle': 4, 'hexagon': 11}","(3, 10, -30)"
+sweep_10_5.svg,"{'circle': 7, 'octagon': 15, 'star': 4}","(3, 10, -30)"
+sweep_10_6.svg,"{'pentagon': 7, 'hexagon': 9, 'triangle': 16}","(3, 10, -30)"
+sweep_10_7.svg,"{'pentagon': 17, 'triangle': 1, 'octagon': 10}","(3, 10, -30)"
+sweep_10_8.svg,"{'rectangle': 11, 'circle': 10, 'octagon': 7}","(3, 10, -30)"
+sweep_10_9.svg,"{'circle': 5, 'star': 4, 'hexagon': 7}","(3, 10, -30)"
+sweep_11_0.svg,"{'star': 15, 'rectangle': 1, 'hexagon': 4}","(3, 10, -40)"
+sweep_11_1.svg,"{'triangle': 3, 'pentagon': 10, 'rectangle': 1}","(3, 10, -40)"
+sweep_11_2.svg,"{'rectangle': 6, 'circle': 12, 'star': 6}","(3, 10, -40)"
+sweep_11_3.svg,"{'star': 15, 'hexagon': 13, 'pentagon': 10}","(3, 10, -40)"
+sweep_11_4.svg,"{'triangle': 12, 'hexagon': 11, 'pentagon': 12}","(3, 10, -40)"
+sweep_11_5.svg,"{'octagon': 5, 'pentagon': 5, 'hexagon': 11}","(3, 10, -40)"
+sweep_11_6.svg,"{'circle': 4, 'triangle': 5, 'octagon': 3}","(3, 10, -40)"
+sweep_11_7.svg,"{'octagon': 15, 'star': 8, 'rectangle': 10}","(3, 10, -40)"
+sweep_11_8.svg,"{'octagon': 8, 'star': 8, 'circle': 4}","(3, 10, -40)"
+sweep_11_9.svg,"{'star': 2, 'triangle': 16, 'hexagon': 9}","(3, 10, -40)"
+sweep_12_0.svg,"{'hexagon': 2, 'triangle': 1, 'rectangle': 2, 'circle': 2, 'star': 1}","(7, 3, 10)"
+sweep_12_1.svg,"{'hexagon': 5, 'star': 2, 'rectangle': 4, 'triangle': 3}","(7, 3, 10)"
+sweep_12_2.svg,"{'star': 2, 'circle': 3, 'triangle': 2, 'octagon': 1, 'rectangle': 2, 'hexagon': 3}","(7, 3, 10)"
+sweep_12_3.svg,"{'star': 1, 'circle': 6, 'pentagon': 3, 'octagon': 2, 'rectangle': 3}","(7, 3, 10)"
+sweep_12_4.svg,"{'triangle': 5, 'hexagon': 2, 'octagon': 1}","(7, 3, 10)"
+sweep_12_5.svg,"{'triangle': 1, 'star': 3, 'octagon': 1, 'pentagon': 4, 'rectangle': 1, 'hexagon': 3}","(7, 3, 10)"
+sweep_12_6.svg,"{'hexagon': 3, 'rectangle': 1, 'pentagon': 3}","(7, 3, 10)"
+sweep_12_7.svg,"{'star': 2, 'circle': 1, 'rectangle': 3, 'triangle': 2, 'hexagon': 2, 'octagon': 1}","(7, 3, 10)"
+sweep_12_8.svg,"{'octagon': 3, 'star': 1, 'circle': 3, 'triangle': 3, 'pentagon': 2, 'rectangle': 1}","(7, 3, 10)"
+sweep_12_9.svg,"{'hexagon': 4, 'star': 4, 'octagon': 2, 'circle': 2}","(7, 3, 10)"
+sweep_13_0.svg,"{'triangle': 2, 'hexagon': 7, 'star': 2, 'rectangle': 5, 'pentagon': 1, 'octagon': 3, 'circle': 4}","(7, 3, -20)"
+sweep_13_1.svg,"{'star': 5, 'pentagon': 5, 'circle': 4, 'rectangle': 1, 'triangle': 2, 'hexagon': 2, 'octagon': 4}","(7, 3, -20)"
+sweep_13_2.svg,"{'hexagon': 4, 'rectangle': 5, 'circle': 2, 'star': 2, 'pentagon': 1, 'octagon': 3, 'triangle': 1}","(7, 3, -20)"
+sweep_13_3.svg,"{'pentagon': 4, 'triangle': 4, 'circle': 1, 'octagon': 5, 'hexagon': 4, 'rectangle': 3}","(7, 3, -20)"
+sweep_13_4.svg,"{'triangle': 1, 'octagon': 1, 'star': 1, 'circle': 2, 'pentagon': 3, 'hexagon': 3, 'rectangle': 4}","(7, 3, -20)"
+sweep_13_5.svg,"{'circle': 3, 'star': 2, 'triangle': 1, 'pentagon': 4, 'octagon': 6, 'rectangle': 5}","(7, 3, -20)"
+sweep_13_6.svg,"{'hexagon': 2, 'octagon': 1, 'circle': 2, 'pentagon': 1, 'star': 1, 'rectangle': 5, 'triangle': 2}","(7, 3, -20)"
+sweep_13_7.svg,"{'hexagon': 3, 'rectangle': 1, 'pentagon': 2, 'circle': 3, 'triangle': 3, 'octagon': 2, 'star': 2}","(7, 3, -20)"
+sweep_13_8.svg,"{'octagon': 6, 'pentagon': 2, 'rectangle': 1, 'star': 1, 'circle': 1, 'triangle': 2, 'hexagon': 1}","(7, 3, -20)"
+sweep_13_9.svg,"{'octagon': 4, 'hexagon': 2, 'pentagon': 2, 'rectangle': 6, 'star': 2, 'triangle': 2, 'circle': 3}","(7, 3, -20)"
+sweep_14_0.svg,"{'star': 3, 'circle': 3, 'rectangle': 2, 'triangle': 3, 'hexagon': 7, 'pentagon': 4, 'octagon': 1}","(7, 3, -30)"
+sweep_14_1.svg,"{'pentagon': 2, 'circle': 1, 'triangle': 2, 'hexagon': 1, 'rectangle': 7, 'star': 4, 'octagon': 1}","(7, 3, -30)"
+sweep_14_2.svg,"{'pentagon': 5, 'rectangle': 3, 'triangle': 2, 'hexagon': 4, 'octagon': 2, 'circle': 5, 'star': 3}","(7, 3, -30)"
+sweep_14_3.svg,"{'hexagon': 3, 'octagon': 2, 'star': 3, 'circle': 2, 'pentagon': 4, 'rectangle': 2, 'triangle': 4}","(7, 3, -30)"
+sweep_14_4.svg,"{'pentagon': 3, 'star': 7, 'circle': 1, 'rectangle': 5, 'hexagon': 1, 'octagon': 1, 'triangle': 2}","(7, 3, -30)"
+sweep_14_5.svg,"{'hexagon': 1, 'triangle': 6, 'star': 5, 'circle': 5, 'pentagon': 3, 'octagon': 7, 'rectangle': 2}","(7, 3, -30)"
+sweep_14_6.svg,"{'rectangle': 5, 'hexagon': 4, 'triangle': 3, 'pentagon': 3, 'star': 2, 'octagon': 6, 'circle': 1}","(7, 3, -30)"
+sweep_14_7.svg,"{'octagon': 6, 'triangle': 3, 'circle': 1, 'star': 1, 'pentagon': 5, 'rectangle': 3, 'hexagon': 3}","(7, 3, -30)"
+sweep_14_8.svg,"{'rectangle': 6, 'circle': 1, 'pentagon': 1, 'triangle': 1, 'hexagon': 3, 'octagon': 3, 'star': 4}","(7, 3, -30)"
+sweep_14_9.svg,"{'pentagon': 2, 'hexagon': 3, 'triangle': 1, 'octagon': 5, 'circle': 2, 'rectangle': 2, 'star': 2}","(7, 3, -30)"
+sweep_15_0.svg,"{'triangle': 8, 'rectangle': 5, 'octagon': 1, 'circle': 3, 'pentagon': 4, 'star': 1, 'hexagon': 4}","(7, 3, -40)"
+sweep_15_1.svg,"{'rectangle': 2, 'star': 6, 'pentagon': 4, 'octagon': 2, 'hexagon': 4, 'triangle': 3, 'circle': 5}","(7, 3, -40)"
+sweep_15_2.svg,"{'hexagon': 1, 'rectangle': 4, 'star': 2, 'pentagon': 2, 'octagon': 2, 'circle': 3, 'triangle': 1}","(7, 3, -40)"
+sweep_15_3.svg,"{'octagon': 2, 'triangle': 5, 'circle': 4, 'hexagon': 3, 'rectangle': 3, 'star': 1, 'pentagon': 3}","(7, 3, -40)"
+sweep_15_4.svg,"{'circle': 8, 'pentagon': 3, 'star': 4, 'hexagon': 6, 'octagon': 7, 'rectangle': 1, 'triangle': 3}","(7, 3, -40)"
+sweep_15_5.svg,"{'triangle': 1, 'circle': 5, 'pentagon': 4, 'octagon': 4, 'star': 2, 'rectangle': 2, 'hexagon': 4}","(7, 3, -40)"
+sweep_15_6.svg,"{'hexagon': 3, 'octagon': 2, 'rectangle': 4, 'pentagon': 1, 'triangle': 6, 'star': 4, 'circle': 3}","(7, 3, -40)"
+sweep_15_7.svg,"{'star': 3, 'octagon': 2, 'hexagon': 5, 'pentagon': 2, 'circle': 6, 'triangle': 1, 'rectangle': 8}","(7, 3, -40)"
+sweep_15_8.svg,"{'pentagon': 4, 'circle': 8, 'rectangle': 2, 'triangle': 3, 'hexagon': 5, 'octagon': 2, 'star': 6}","(7, 3, -40)"
+sweep_15_9.svg,"{'star': 2, 'triangle': 4, 'octagon': 1, 'rectangle': 1, 'pentagon': 1, 'circle': 2, 'hexagon': 3}","(7, 3, -40)"
+sweep_16_0.svg,"{'octagon': 11, 'triangle': 2, 'rectangle': 2, 'hexagon': 1}","(7, 6, 10)"
+sweep_16_1.svg,"{'star': 5, 'octagon': 6, 'triangle': 2, 'hexagon': 2}","(7, 6, 10)"
+sweep_16_2.svg,"{'triangle': 3, 'hexagon': 3, 'rectangle': 1, 'pentagon': 1, 'circle': 1, 'octagon': 2, 'star': 2}","(7, 6, 10)"
+sweep_16_3.svg,"{'octagon': 3, 'hexagon': 4, 'star': 6, 'triangle': 3, 'pentagon': 1}","(7, 6, 10)"
+sweep_16_4.svg,"{'triangle': 3, 'star': 5, 'octagon': 5}","(7, 6, 10)"
+sweep_16_5.svg,"{'rectangle': 4, 'hexagon': 5, 'star': 3}","(7, 6, 10)"
+sweep_16_6.svg,"{'circle': 10, 'triangle': 1, 'hexagon': 1}","(7, 6, 10)"
+sweep_16_7.svg,"{'octagon': 6, 'hexagon': 4, 'circle': 1}","(7, 6, 10)"
+sweep_16_8.svg,"{'rectangle': 3, 'pentagon': 5, 'octagon': 2, 'circle': 1}","(7, 6, 10)"
+sweep_16_9.svg,"{'hexagon': 4, 'octagon': 8, 'star': 2}","(7, 6, 10)"
+sweep_17_0.svg,"{'triangle': 3, 'octagon': 2, 'rectangle': 1, 'star': 4, 'circle': 5, 'pentagon': 2}","(7, 6, -20)"
+sweep_17_1.svg,"{'triangle': 3, 'octagon': 3, 'circle': 6, 'pentagon': 1, 'hexagon': 4, 'rectangle': 5, 'star': 1}","(7, 6, -20)"
+sweep_17_2.svg,"{'triangle': 3, 'circle': 10, 'octagon': 2, 'rectangle': 5, 'pentagon': 4, 'hexagon': 1}","(7, 6, -20)"
+sweep_17_3.svg,"{'circle': 5, 'octagon': 4, 'pentagon': 2, 'triangle': 6, 'rectangle': 3}","(7, 6, -20)"
+sweep_17_4.svg,"{'hexagon': 12, 'star': 7, 'rectangle': 7, 'triangle': 6, 'pentagon': 2, 'octagon': 3, 'circle': 2}","(7, 6, -20)"
+sweep_17_5.svg,"{'hexagon': 8, 'circle': 2, 'octagon': 5, 'triangle': 5, 'pentagon': 2, 'star': 3}","(7, 6, -20)"
+sweep_17_6.svg,"{'circle': 8, 'triangle': 8, 'hexagon': 2, 'pentagon': 2, 'rectangle': 2, 'star': 3, 'octagon': 2}","(7, 6, -20)"
+sweep_17_7.svg,"{'pentagon': 1, 'triangle': 5, 'octagon': 6, 'star': 3, 'rectangle': 1, 'hexagon': 2, 'circle': 2}","(7, 6, -20)"
+sweep_17_8.svg,"{'octagon': 6, 'circle': 9, 'pentagon': 5, 'star': 1, 'triangle': 1}","(7, 6, -20)"
+sweep_17_9.svg,"{'octagon': 1, 'hexagon': 6, 'star': 1, 'circle': 5, 'pentagon': 3, 'rectangle': 5}","(7, 6, -20)"
+sweep_18_0.svg,"{'hexagon': 4, 'circle': 6, 'triangle': 8, 'star': 9, 'pentagon': 4, 'rectangle': 2, 'octagon': 4}","(7, 6, -30)"
+sweep_18_1.svg,"{'circle': 10, 'octagon': 10, 'star': 3, 'triangle': 5, 'hexagon': 3, 'pentagon': 2, 'rectangle': 5}","(7, 6, -30)"
+sweep_18_2.svg,"{'triangle': 1, 'octagon': 2, 'pentagon': 5, 'star': 5, 'circle': 10, 'hexagon': 7, 'rectangle': 7}","(7, 6, -30)"
+sweep_18_3.svg,"{'star': 9, 'circle': 4, 'pentagon': 10, 'hexagon': 9, 'triangle': 11, 'octagon': 1, 'rectangle': 3}","(7, 6, -30)"
+sweep_18_4.svg,"{'star': 4, 'hexagon': 5, 'pentagon': 12, 'circle': 7, 'octagon': 8, 'rectangle': 4}","(7, 6, -30)"
+sweep_18_5.svg,"{'star': 2, 'triangle': 7, 'hexagon': 4, 'octagon': 8, 'rectangle': 8, 'pentagon': 6}","(7, 6, -30)"
+sweep_18_6.svg,"{'rectangle': 2, 'octagon': 1, 'triangle': 5, 'pentagon': 6, 'star': 2, 'hexagon': 8, 'circle': 2}","(7, 6, -30)"
+sweep_18_7.svg,"{'hexagon': 1, 'pentagon': 6, 'octagon': 3, 'circle': 4, 'star': 6, 'triangle': 6, 'rectangle': 4}","(7, 6, -30)"
+sweep_18_8.svg,"{'star': 3, 'triangle': 6, 'pentagon': 7, 'hexagon': 3, 'circle': 3, 'rectangle': 1, 'octagon': 2}","(7, 6, -30)"
+sweep_18_9.svg,"{'octagon': 6, 'pentagon': 8, 'rectangle': 4, 'hexagon': 5, 'star': 3, 'circle': 9}","(7, 6, -30)"
+sweep_19_0.svg,"{'pentagon': 8, 'rectangle': 2, 'star': 8, 'circle': 8, 'triangle': 2, 'octagon': 5, 'hexagon': 4}","(7, 6, -40)"
+sweep_19_1.svg,"{'triangle': 4, 'pentagon': 7, 'rectangle': 2, 'star': 4, 'octagon': 7, 'hexagon': 2, 'circle': 1}","(7, 6, -40)"
+sweep_19_2.svg,"{'octagon': 1, 'triangle': 2, 'rectangle': 2, 'circle': 1, 'pentagon': 7, 'hexagon': 2, 'star': 3}","(7, 6, -40)"
+sweep_19_3.svg,"{'pentagon': 6, 'hexagon': 4, 'octagon': 6, 'circle': 8, 'rectangle': 2, 'star': 9, 'triangle': 6}","(7, 6, -40)"
+sweep_19_4.svg,"{'octagon': 3, 'hexagon': 3, 'triangle': 4, 'circle': 10, 'pentagon': 3, 'rectangle': 7, 'star': 2}","(7, 6, -40)"
+sweep_19_5.svg,"{'octagon': 2, 'pentagon': 1, 'circle': 4, 'triangle': 4, 'star': 6, 'rectangle': 4, 'hexagon': 5}","(7, 6, -40)"
+sweep_19_6.svg,"{'triangle': 3, 'circle': 5, 'star': 6, 'hexagon': 7, 'octagon': 3, 'pentagon': 5, 'rectangle': 1}","(7, 6, -40)"
+sweep_19_7.svg,"{'pentagon': 8, 'octagon': 3, 'hexagon': 1, 'circle': 4, 'star': 5, 'rectangle': 5, 'triangle': 8}","(7, 6, -40)"
+sweep_19_8.svg,"{'triangle': 7, 'octagon': 5, 'pentagon': 1, 'hexagon': 1, 'circle': 5, 'rectangle': 4, 'star': 8}","(7, 6, -40)"
+sweep_19_9.svg,"{'star': 8, 'rectangle': 4, 'octagon': 9, 'pentagon': 5, 'circle': 10, 'hexagon': 3}","(7, 6, -40)"
+sweep_20_0.svg,"{'pentagon': 8, 'triangle': 1, 'octagon': 2}","(7, 10, 10)"
+sweep_20_1.svg,"{'star': 15, 'circle': 1, 'octagon': 1}","(7, 10, 10)"
+sweep_20_2.svg,"{'hexagon': 11, 'rectangle': 5, 'octagon': 3}","(7, 10, 10)"
+sweep_20_3.svg,"{'rectangle': 11, 'circle': 3, 'octagon': 3}","(7, 10, 10)"
+sweep_20_4.svg,"{'circle': 11, 'star': 1, 'triangle': 1}","(7, 10, 10)"
+sweep_20_5.svg,"{'circle': 10, 'star': 4}","(7, 10, 10)"
+sweep_20_6.svg,"{'hexagon': 5, 'triangle': 9, 'rectangle': 2, 'octagon': 2, 'circle': 1}","(7, 10, 10)"
+sweep_20_7.svg,"{'hexagon': 3, 'octagon': 5, 'triangle': 3}","(7, 10, 10)"
+sweep_20_8.svg,"{'triangle': 6, 'rectangle': 6, 'star': 1, 'octagon': 1}","(7, 10, 10)"
+sweep_20_9.svg,"{'hexagon': 9, 'star': 1, 'triangle': 1}","(7, 10, 10)"
+sweep_21_0.svg,"{'circle': 14, 'rectangle': 8, 'octagon': 6, 'star': 1}","(7, 10, -20)"
+sweep_21_1.svg,"{'rectangle': 8, 'pentagon': 9, 'hexagon': 4, 'circle': 1, 'triangle': 4}","(7, 10, -20)"
+sweep_21_2.svg,"{'triangle': 3, 'star': 9, 'hexagon': 4, 'pentagon': 4, 'circle': 4, 'octagon': 5}","(7, 10, -20)"
+sweep_21_3.svg,"{'pentagon': 13, 'hexagon': 9, 'triangle': 3, 'circle': 6, 'rectangle': 1}","(7, 10, -20)"
+sweep_21_4.svg,"{'star': 9, 'circle': 8, 'hexagon': 4, 'triangle': 2, 'octagon': 3, 'rectangle': 3}","(7, 10, -20)"
+sweep_21_5.svg,"{'star': 11, 'octagon': 8, 'pentagon': 1, 'circle': 7}","(7, 10, -20)"
+sweep_21_6.svg,"{'hexagon': 12, 'pentagon': 13, 'rectangle': 4, 'star': 2, 'triangle': 2}","(7, 10, -20)"
+sweep_21_7.svg,"{'octagon': 4, 'hexagon': 1, 'star': 12, 'rectangle': 7, 'circle': 3, 'pentagon': 9, 'triangle': 1}","(7, 10, -20)"
+sweep_21_8.svg,"{'pentagon': 16, 'octagon': 3, 'circle': 1, 'triangle': 3, 'star': 1, 'rectangle': 1, 'hexagon': 5}","(7, 10, -20)"
+sweep_21_9.svg,"{'octagon': 10, 'star': 7, 'triangle': 4, 'pentagon': 2, 'rectangle': 1, 'circle': 2, 'hexagon': 3}","(7, 10, -20)"
+sweep_22_0.svg,"{'pentagon': 3, 'rectangle': 4, 'hexagon': 10, 'circle': 6, 'octagon': 9, 'triangle': 4, 'star': 1}","(7, 10, -30)"
+sweep_22_1.svg,"{'octagon': 13, 'rectangle': 7, 'circle': 9, 'pentagon': 9, 'hexagon': 1, 'star': 3}","(7, 10, -30)"
+sweep_22_2.svg,"{'hexagon': 7, 'rectangle': 4, 'octagon': 12, 'star': 8, 'circle': 6, 'pentagon': 2, 'triangle': 1}","(7, 10, -30)"
+sweep_22_3.svg,"{'triangle': 11, 'hexagon': 17, 'star': 10, 'rectangle': 7, 'circle': 3, 'pentagon': 4, 'octagon': 3}","(7, 10, -30)"
+sweep_22_4.svg,"{'octagon': 14, 'pentagon': 11, 'triangle': 14, 'star': 4, 'circle': 6, 'rectangle': 2}","(7, 10, -30)"
+sweep_22_5.svg,"{'hexagon': 1, 'rectangle': 4, 'star': 9, 'circle': 1, 'octagon': 15, 'pentagon': 9, 'triangle': 1}","(7, 10, -30)"
+sweep_22_6.svg,"{'pentagon': 3, 'star': 4, 'rectangle': 4, 'triangle': 3, 'hexagon': 4, 'octagon': 15, 'circle': 4}","(7, 10, -30)"
+sweep_22_7.svg,"{'triangle': 13, 'pentagon': 8, 'star': 7, 'hexagon': 1, 'rectangle': 10, 'octagon': 5}","(7, 10, -30)"
+sweep_22_8.svg,"{'pentagon': 6, 'rectangle': 12, 'star': 13, 'triangle': 1, 'circle': 10, 'hexagon': 1, 'octagon': 1}","(7, 10, -30)"
+sweep_22_9.svg,"{'circle': 12, 'star': 7, 'hexagon': 6, 'rectangle': 11, 'pentagon': 5, 'triangle': 2, 'octagon': 3}","(7, 10, -30)"
+sweep_23_0.svg,"{'star': 4, 'rectangle': 10, 'hexagon': 2, 'triangle': 14, 'circle': 8, 'octagon': 8, 'pentagon': 16}","(7, 10, -40)"
+sweep_23_1.svg,"{'circle': 6, 'hexagon': 9, 'triangle': 12, 'star': 6, 'octagon': 5, 'rectangle': 3, 'pentagon': 6}","(7, 10, -40)"
+sweep_23_2.svg,"{'triangle': 4, 'pentagon': 8, 'rectangle': 8, 'star': 7, 'hexagon': 10, 'circle': 9, 'octagon': 5}","(7, 10, -40)"
+sweep_23_3.svg,"{'hexagon': 15, 'circle': 6, 'pentagon': 11, 'star': 11, 'rectangle': 8, 'octagon': 5, 'triangle': 10}","(7, 10, -40)"
+sweep_23_4.svg,"{'octagon': 3, 'triangle': 2, 'star': 8, 'pentagon': 7, 'hexagon': 6, 'rectangle': 10, 'circle': 6}","(7, 10, -40)"
+sweep_23_5.svg,"{'circle': 5, 'pentagon': 5, 'octagon': 8, 'triangle': 8, 'rectangle': 2, 'star': 11, 'hexagon': 8}","(7, 10, -40)"
+sweep_23_6.svg,"{'rectangle': 9, 'octagon': 5, 'circle': 18, 'pentagon': 12, 'star': 6, 'hexagon': 4}","(7, 10, -40)"
+sweep_23_7.svg,"{'hexagon': 12, 'star': 9, 'octagon': 14, 'pentagon': 17, 'triangle': 17, 'circle': 10, 'rectangle': 5}","(7, 10, -40)"
+sweep_23_8.svg,"{'star': 1, 'rectangle': 4, 'octagon': 5, 'hexagon': 15, 'pentagon': 3, 'circle': 10, 'triangle': 2}","(7, 10, -40)"
+sweep_23_9.svg,"{'pentagon': 9, 'octagon': 1, 'hexagon': 6, 'circle': 3, 'rectangle': 9, 'star': 3, 'triangle': 4}","(7, 10, -40)"
diff --git a/2D_DoYouSeeMe/geometric_dataset/dataset_info.csv b/2D_DoYouSeeMe/geometric_dataset/dataset_info.csv
new file mode 100644
index 0000000000000000000000000000000000000000..6f5ae263092f4af3aa2df06aa81e9ce4123e8c6b
--- /dev/null
+++ b/2D_DoYouSeeMe/geometric_dataset/dataset_info.csv
@@ -0,0 +1,241 @@
+filename,question,answer,sweep
+sweep_0_0.svg,"Count the total number of triangles in the image, including each concentric triangle separately. For example, if there is one triangle with 2 inner concentric rings, that counts as 3 triangles. Respond with only a number.",4,"(3, 3, 10)"
+sweep_0_1.svg,"Count the total number of stars in the image, including each concentric star separately. For example, if there is one star with 2 inner concentric rings, that counts as 3 stars. Respond with only a number.",3,"(3, 3, 10)"
+sweep_0_2.svg,"Count the total number of octagons in the image, including each concentric octagon separately. For example, if there is one octagon with 2 inner concentric rings, that counts as 3 octagons. Respond with only a number.",1,"(3, 3, 10)"
+sweep_0_3.svg,"Count the total number of octagons in the image, including each concentric octagon separately. For example, if there is one octagon with 2 inner concentric rings, that counts as 3 octagons. Respond with only a number.",2,"(3, 3, 10)"
+sweep_0_4.svg,"Count the total number of triangles in the image, including each concentric triangle separately. For example, if there is one triangle with 2 inner concentric rings, that counts as 3 triangles. Respond with only a number.",5,"(3, 3, 10)"
+sweep_0_5.svg,"Count the total number of rectangles in the image, including each concentric rectangle separately. For example, if there is one rectangle with 2 inner concentric rings, that counts as 3 rectangles. Respond with only a number.",2,"(3, 3, 10)"
+sweep_0_6.svg,"Count the total number of octagons in the image, including each concentric octagon separately. For example, if there is one octagon with 2 inner concentric rings, that counts as 3 octagons. Respond with only a number.",2,"(3, 3, 10)"
+sweep_0_7.svg,"Count the total number of octagons in the image, including each concentric octagon separately. For example, if there is one octagon with 2 inner concentric rings, that counts as 3 octagons. Respond with only a number.",5,"(3, 3, 10)"
+sweep_0_8.svg,"Count the total number of rectangles in the image, including each concentric rectangle separately. For example, if there is one rectangle with 2 inner concentric rings, that counts as 3 rectangles. Respond with only a number.",4,"(3, 3, 10)"
+sweep_0_9.svg,"Count the total number of pentagons in the image, including each concentric pentagon separately. For example, if there is one pentagon with 2 inner concentric rings, that counts as 3 pentagons. Respond with only a number.",4,"(3, 3, 10)"
+sweep_1_0.svg,"Count the total number of octagons in the image, including each concentric octagon separately. For example, if there is one octagon with 2 inner concentric rings, that counts as 3 octagons. Respond with only a number.",6,"(3, 3, -20)"
+sweep_1_1.svg,"Count the total number of pentagons in the image, including each concentric pentagon separately. For example, if there is one pentagon with 2 inner concentric rings, that counts as 3 pentagons. Respond with only a number.",1,"(3, 3, -20)"
+sweep_1_2.svg,"Count the total number of rectangles in the image, including each concentric rectangle separately. For example, if there is one rectangle with 2 inner concentric rings, that counts as 3 rectangles. Respond with only a number.",5,"(3, 3, -20)"
+sweep_1_3.svg,"Count the total number of triangles in the image, including each concentric triangle separately. For example, if there is one triangle with 2 inner concentric rings, that counts as 3 triangles. Respond with only a number.",2,"(3, 3, -20)"
+sweep_1_4.svg,"Count the total number of circles in the image, including each concentric circle separately. For example, if there is one circle with 2 inner concentric rings, that counts as 3 circles. Respond with only a number.",3,"(3, 3, -20)"
+sweep_1_5.svg,"Count the total number of octagons in the image, including each concentric octagon separately. For example, if there is one octagon with 2 inner concentric rings, that counts as 3 octagons. Respond with only a number.",1,"(3, 3, -20)"
+sweep_1_6.svg,"Count the total number of hexagons in the image, including each concentric hexagon separately. For example, if there is one hexagon with 2 inner concentric rings, that counts as 3 hexagons. Respond with only a number.",4,"(3, 3, -20)"
+sweep_1_7.svg,"Count the total number of rectangles in the image, including each concentric rectangle separately. For example, if there is one rectangle with 2 inner concentric rings, that counts as 3 rectangles. Respond with only a number.",1,"(3, 3, -20)"
+sweep_1_8.svg,"Count the total number of octagons in the image, including each concentric octagon separately. For example, if there is one octagon with 2 inner concentric rings, that counts as 3 octagons. Respond with only a number.",1,"(3, 3, -20)"
+sweep_1_9.svg,"Count the total number of pentagons in the image, including each concentric pentagon separately. For example, if there is one pentagon with 2 inner concentric rings, that counts as 3 pentagons. Respond with only a number.",4,"(3, 3, -20)"
+sweep_2_0.svg,"Count the total number of rectangles in the image, including each concentric rectangle separately. For example, if there is one rectangle with 2 inner concentric rings, that counts as 3 rectangles. Respond with only a number.",4,"(3, 3, -30)"
+sweep_2_1.svg,"Count the total number of triangles in the image, including each concentric triangle separately. For example, if there is one triangle with 2 inner concentric rings, that counts as 3 triangles. Respond with only a number.",1,"(3, 3, -30)"
+sweep_2_2.svg,"Count the total number of octagons in the image, including each concentric octagon separately. For example, if there is one octagon with 2 inner concentric rings, that counts as 3 octagons. Respond with only a number.",7,"(3, 3, -30)"
+sweep_2_3.svg,"Count the total number of stars in the image, including each concentric star separately. For example, if there is one star with 2 inner concentric rings, that counts as 3 stars. Respond with only a number.",2,"(3, 3, -30)"
+sweep_2_4.svg,"Count the total number of pentagons in the image, including each concentric pentagon separately. For example, if there is one pentagon with 2 inner concentric rings, that counts as 3 pentagons. Respond with only a number.",2,"(3, 3, -30)"
+sweep_2_5.svg,"Count the total number of rectangles in the image, including each concentric rectangle separately. For example, if there is one rectangle with 2 inner concentric rings, that counts as 3 rectangles. Respond with only a number.",4,"(3, 3, -30)"
+sweep_2_6.svg,"Count the total number of triangles in the image, including each concentric triangle separately. For example, if there is one triangle with 2 inner concentric rings, that counts as 3 triangles. Respond with only a number.",3,"(3, 3, -30)"
+sweep_2_7.svg,"Count the total number of pentagons in the image, including each concentric pentagon separately. For example, if there is one pentagon with 2 inner concentric rings, that counts as 3 pentagons. Respond with only a number.",2,"(3, 3, -30)"
+sweep_2_8.svg,"Count the total number of stars in the image, including each concentric star separately. For example, if there is one star with 2 inner concentric rings, that counts as 3 stars. Respond with only a number.",4,"(3, 3, -30)"
+sweep_2_9.svg,"Count the total number of stars in the image, including each concentric star separately. For example, if there is one star with 2 inner concentric rings, that counts as 3 stars. Respond with only a number.",1,"(3, 3, -30)"
+sweep_3_0.svg,"Count the total number of rectangles in the image, including each concentric rectangle separately. For example, if there is one rectangle with 2 inner concentric rings, that counts as 3 rectangles. Respond with only a number.",1,"(3, 3, -40)"
+sweep_3_1.svg,"Count the total number of pentagons in the image, including each concentric pentagon separately. For example, if there is one pentagon with 2 inner concentric rings, that counts as 3 pentagons. Respond with only a number.",1,"(3, 3, -40)"
+sweep_3_2.svg,"Count the total number of octagons in the image, including each concentric octagon separately. For example, if there is one octagon with 2 inner concentric rings, that counts as 3 octagons. Respond with only a number.",3,"(3, 3, -40)"
+sweep_3_3.svg,"Count the total number of stars in the image, including each concentric star separately. For example, if there is one star with 2 inner concentric rings, that counts as 3 stars. Respond with only a number.",3,"(3, 3, -40)"
+sweep_3_4.svg,"Count the total number of hexagons in the image, including each concentric hexagon separately. For example, if there is one hexagon with 2 inner concentric rings, that counts as 3 hexagons. Respond with only a number.",3,"(3, 3, -40)"
+sweep_3_5.svg,"Count the total number of hexagons in the image, including each concentric hexagon separately. For example, if there is one hexagon with 2 inner concentric rings, that counts as 3 hexagons. Respond with only a number.",1,"(3, 3, -40)"
+sweep_3_6.svg,"Count the total number of rectangles in the image, including each concentric rectangle separately. For example, if there is one rectangle with 2 inner concentric rings, that counts as 3 rectangles. Respond with only a number.",4,"(3, 3, -40)"
+sweep_3_7.svg,"Count the total number of triangles in the image, including each concentric triangle separately. For example, if there is one triangle with 2 inner concentric rings, that counts as 3 triangles. Respond with only a number.",5,"(3, 3, -40)"
+sweep_3_8.svg,"Count the total number of pentagons in the image, including each concentric pentagon separately. For example, if there is one pentagon with 2 inner concentric rings, that counts as 3 pentagons. Respond with only a number.",4,"(3, 3, -40)"
+sweep_3_9.svg,"Count the total number of stars in the image, including each concentric star separately. For example, if there is one star with 2 inner concentric rings, that counts as 3 stars. Respond with only a number.",4,"(3, 3, -40)"
+sweep_4_0.svg,"Count the total number of pentagons in the image, including each concentric pentagon separately. For example, if there is one pentagon with 2 inner concentric rings, that counts as 3 pentagons. Respond with only a number.",4,"(3, 6, 10)"
+sweep_4_1.svg,"Count the total number of rectangles in the image, including each concentric rectangle separately. For example, if there is one rectangle with 2 inner concentric rings, that counts as 3 rectangles. Respond with only a number.",1,"(3, 6, 10)"
+sweep_4_2.svg,"Count the total number of pentagons in the image, including each concentric pentagon separately. For example, if there is one pentagon with 2 inner concentric rings, that counts as 3 pentagons. Respond with only a number.",1,"(3, 6, 10)"
+sweep_4_3.svg,"Count the total number of octagons in the image, including each concentric octagon separately. For example, if there is one octagon with 2 inner concentric rings, that counts as 3 octagons. Respond with only a number.",4,"(3, 6, 10)"
+sweep_4_4.svg,"Count the total number of pentagons in the image, including each concentric pentagon separately. For example, if there is one pentagon with 2 inner concentric rings, that counts as 3 pentagons. Respond with only a number.",4,"(3, 6, 10)"
+sweep_4_5.svg,"Count the total number of stars in the image, including each concentric star separately. For example, if there is one star with 2 inner concentric rings, that counts as 3 stars. Respond with only a number.",9,"(3, 6, 10)"
+sweep_4_6.svg,"Count the total number of circles in the image, including each concentric circle separately. For example, if there is one circle with 2 inner concentric rings, that counts as 3 circles. Respond with only a number.",1,"(3, 6, 10)"
+sweep_4_7.svg,"Count the total number of stars in the image, including each concentric star separately. For example, if there is one star with 2 inner concentric rings, that counts as 3 stars. Respond with only a number.",2,"(3, 6, 10)"
+sweep_4_8.svg,"Count the total number of stars in the image, including each concentric star separately. For example, if there is one star with 2 inner concentric rings, that counts as 3 stars. Respond with only a number.",3,"(3, 6, 10)"
+sweep_4_9.svg,"Count the total number of circles in the image, including each concentric circle separately. For example, if there is one circle with 2 inner concentric rings, that counts as 3 circles. Respond with only a number.",1,"(3, 6, 10)"
+sweep_5_0.svg,"Count the total number of triangles in the image, including each concentric triangle separately. For example, if there is one triangle with 2 inner concentric rings, that counts as 3 triangles. Respond with only a number.",3,"(3, 6, -20)"
+sweep_5_1.svg,"Count the total number of rectangles in the image, including each concentric rectangle separately. For example, if there is one rectangle with 2 inner concentric rings, that counts as 3 rectangles. Respond with only a number.",7,"(3, 6, -20)"
+sweep_5_2.svg,"Count the total number of circles in the image, including each concentric circle separately. For example, if there is one circle with 2 inner concentric rings, that counts as 3 circles. Respond with only a number.",4,"(3, 6, -20)"
+sweep_5_3.svg,"Count the total number of pentagons in the image, including each concentric pentagon separately. For example, if there is one pentagon with 2 inner concentric rings, that counts as 3 pentagons. Respond with only a number.",1,"(3, 6, -20)"
+sweep_5_4.svg,"Count the total number of triangles in the image, including each concentric triangle separately. For example, if there is one triangle with 2 inner concentric rings, that counts as 3 triangles. Respond with only a number.",6,"(3, 6, -20)"
+sweep_5_5.svg,"Count the total number of hexagons in the image, including each concentric hexagon separately. For example, if there is one hexagon with 2 inner concentric rings, that counts as 3 hexagons. Respond with only a number.",6,"(3, 6, -20)"
+sweep_5_6.svg,"Count the total number of circles in the image, including each concentric circle separately. For example, if there is one circle with 2 inner concentric rings, that counts as 3 circles. Respond with only a number.",4,"(3, 6, -20)"
+sweep_5_7.svg,"Count the total number of stars in the image, including each concentric star separately. For example, if there is one star with 2 inner concentric rings, that counts as 3 stars. Respond with only a number.",7,"(3, 6, -20)"
+sweep_5_8.svg,"Count the total number of hexagons in the image, including each concentric hexagon separately. For example, if there is one hexagon with 2 inner concentric rings, that counts as 3 hexagons. Respond with only a number.",2,"(3, 6, -20)"
+sweep_5_9.svg,"Count the total number of triangles in the image, including each concentric triangle separately. For example, if there is one triangle with 2 inner concentric rings, that counts as 3 triangles. Respond with only a number.",5,"(3, 6, -20)"
+sweep_6_0.svg,"Count the total number of stars in the image, including each concentric star separately. For example, if there is one star with 2 inner concentric rings, that counts as 3 stars. Respond with only a number.",2,"(3, 6, -30)"
+sweep_6_1.svg,"Count the total number of pentagons in the image, including each concentric pentagon separately. For example, if there is one pentagon with 2 inner concentric rings, that counts as 3 pentagons. Respond with only a number.",4,"(3, 6, -30)"
+sweep_6_2.svg,"Count the total number of hexagons in the image, including each concentric hexagon separately. For example, if there is one hexagon with 2 inner concentric rings, that counts as 3 hexagons. Respond with only a number.",9,"(3, 6, -30)"
+sweep_6_3.svg,"Count the total number of octagons in the image, including each concentric octagon separately. For example, if there is one octagon with 2 inner concentric rings, that counts as 3 octagons. Respond with only a number.",10,"(3, 6, -30)"
+sweep_6_4.svg,"Count the total number of triangles in the image, including each concentric triangle separately. For example, if there is one triangle with 2 inner concentric rings, that counts as 3 triangles. Respond with only a number.",7,"(3, 6, -30)"
+sweep_6_5.svg,"Count the total number of circles in the image, including each concentric circle separately. For example, if there is one circle with 2 inner concentric rings, that counts as 3 circles. Respond with only a number.",9,"(3, 6, -30)"
+sweep_6_6.svg,"Count the total number of rectangles in the image, including each concentric rectangle separately. For example, if there is one rectangle with 2 inner concentric rings, that counts as 3 rectangles. Respond with only a number.",5,"(3, 6, -30)"
+sweep_6_7.svg,"Count the total number of hexagons in the image, including each concentric hexagon separately. For example, if there is one hexagon with 2 inner concentric rings, that counts as 3 hexagons. Respond with only a number.",8,"(3, 6, -30)"
+sweep_6_8.svg,"Count the total number of stars in the image, including each concentric star separately. For example, if there is one star with 2 inner concentric rings, that counts as 3 stars. Respond with only a number.",5,"(3, 6, -30)"
+sweep_6_9.svg,"Count the total number of rectangles in the image, including each concentric rectangle separately. For example, if there is one rectangle with 2 inner concentric rings, that counts as 3 rectangles. Respond with only a number.",5,"(3, 6, -30)"
+sweep_7_0.svg,"Count the total number of rectangles in the image, including each concentric rectangle separately. For example, if there is one rectangle with 2 inner concentric rings, that counts as 3 rectangles. Respond with only a number.",7,"(3, 6, -40)"
+sweep_7_1.svg,"Count the total number of octagons in the image, including each concentric octagon separately. For example, if there is one octagon with 2 inner concentric rings, that counts as 3 octagons. Respond with only a number.",6,"(3, 6, -40)"
+sweep_7_2.svg,"Count the total number of hexagons in the image, including each concentric hexagon separately. For example, if there is one hexagon with 2 inner concentric rings, that counts as 3 hexagons. Respond with only a number.",2,"(3, 6, -40)"
+sweep_7_3.svg,"Count the total number of rectangles in the image, including each concentric rectangle separately. For example, if there is one rectangle with 2 inner concentric rings, that counts as 3 rectangles. Respond with only a number.",1,"(3, 6, -40)"
+sweep_7_4.svg,"Count the total number of circles in the image, including each concentric circle separately. For example, if there is one circle with 2 inner concentric rings, that counts as 3 circles. Respond with only a number.",2,"(3, 6, -40)"
+sweep_7_5.svg,"Count the total number of hexagons in the image, including each concentric hexagon separately. For example, if there is one hexagon with 2 inner concentric rings, that counts as 3 hexagons. Respond with only a number.",6,"(3, 6, -40)"
+sweep_7_6.svg,"Count the total number of stars in the image, including each concentric star separately. For example, if there is one star with 2 inner concentric rings, that counts as 3 stars. Respond with only a number.",8,"(3, 6, -40)"
+sweep_7_7.svg,"Count the total number of circles in the image, including each concentric circle separately. For example, if there is one circle with 2 inner concentric rings, that counts as 3 circles. Respond with only a number.",3,"(3, 6, -40)"
+sweep_7_8.svg,"Count the total number of pentagons in the image, including each concentric pentagon separately. For example, if there is one pentagon with 2 inner concentric rings, that counts as 3 pentagons. Respond with only a number.",8,"(3, 6, -40)"
+sweep_7_9.svg,"Count the total number of circles in the image, including each concentric circle separately. For example, if there is one circle with 2 inner concentric rings, that counts as 3 circles. Respond with only a number.",1,"(3, 6, -40)"
+sweep_8_0.svg,"Count the total number of octagons in the image, including each concentric octagon separately. For example, if there is one octagon with 2 inner concentric rings, that counts as 3 octagons. Respond with only a number.",2,"(3, 10, 10)"
+sweep_8_1.svg,"Count the total number of circles in the image, including each concentric circle separately. For example, if there is one circle with 2 inner concentric rings, that counts as 3 circles. Respond with only a number.",4,"(3, 10, 10)"
+sweep_8_2.svg,"Count the total number of circles in the image, including each concentric circle separately. For example, if there is one circle with 2 inner concentric rings, that counts as 3 circles. Respond with only a number.",11,"(3, 10, 10)"
+sweep_8_3.svg,"Count the total number of hexagons in the image, including each concentric hexagon separately. For example, if there is one hexagon with 2 inner concentric rings, that counts as 3 hexagons. Respond with only a number.",5,"(3, 10, 10)"
+sweep_8_4.svg,"Count the total number of rectangles in the image, including each concentric rectangle separately. For example, if there is one rectangle with 2 inner concentric rings, that counts as 3 rectangles. Respond with only a number.",4,"(3, 10, 10)"
+sweep_8_5.svg,"Count the total number of octagons in the image, including each concentric octagon separately. For example, if there is one octagon with 2 inner concentric rings, that counts as 3 octagons. Respond with only a number.",10,"(3, 10, 10)"
+sweep_8_6.svg,"Count the total number of hexagons in the image, including each concentric hexagon separately. For example, if there is one hexagon with 2 inner concentric rings, that counts as 3 hexagons. Respond with only a number.",1,"(3, 10, 10)"
+sweep_8_7.svg,"Count the total number of pentagons in the image, including each concentric pentagon separately. For example, if there is one pentagon with 2 inner concentric rings, that counts as 3 pentagons. Respond with only a number.",4,"(3, 10, 10)"
+sweep_8_8.svg,"Count the total number of pentagons in the image, including each concentric pentagon separately. For example, if there is one pentagon with 2 inner concentric rings, that counts as 3 pentagons. Respond with only a number.",3,"(3, 10, 10)"
+sweep_8_9.svg,"Count the total number of stars in the image, including each concentric star separately. For example, if there is one star with 2 inner concentric rings, that counts as 3 stars. Respond with only a number.",6,"(3, 10, 10)"
+sweep_9_0.svg,"Count the total number of circles in the image, including each concentric circle separately. For example, if there is one circle with 2 inner concentric rings, that counts as 3 circles. Respond with only a number.",1,"(3, 10, -20)"
+sweep_9_1.svg,"Count the total number of octagons in the image, including each concentric octagon separately. For example, if there is one octagon with 2 inner concentric rings, that counts as 3 octagons. Respond with only a number.",2,"(3, 10, -20)"
+sweep_9_2.svg,"Count the total number of pentagons in the image, including each concentric pentagon separately. For example, if there is one pentagon with 2 inner concentric rings, that counts as 3 pentagons. Respond with only a number.",5,"(3, 10, -20)"
+sweep_9_3.svg,"Count the total number of circles in the image, including each concentric circle separately. For example, if there is one circle with 2 inner concentric rings, that counts as 3 circles. Respond with only a number.",14,"(3, 10, -20)"
+sweep_9_4.svg,"Count the total number of circles in the image, including each concentric circle separately. For example, if there is one circle with 2 inner concentric rings, that counts as 3 circles. Respond with only a number.",17,"(3, 10, -20)"
+sweep_9_5.svg,"Count the total number of octagons in the image, including each concentric octagon separately. For example, if there is one octagon with 2 inner concentric rings, that counts as 3 octagons. Respond with only a number.",10,"(3, 10, -20)"
+sweep_9_6.svg,"Count the total number of stars in the image, including each concentric star separately. For example, if there is one star with 2 inner concentric rings, that counts as 3 stars. Respond with only a number.",4,"(3, 10, -20)"
+sweep_9_7.svg,"Count the total number of circles in the image, including each concentric circle separately. For example, if there is one circle with 2 inner concentric rings, that counts as 3 circles. Respond with only a number.",5,"(3, 10, -20)"
+sweep_9_8.svg,"Count the total number of hexagons in the image, including each concentric hexagon separately. For example, if there is one hexagon with 2 inner concentric rings, that counts as 3 hexagons. Respond with only a number.",8,"(3, 10, -20)"
+sweep_9_9.svg,"Count the total number of rectangles in the image, including each concentric rectangle separately. For example, if there is one rectangle with 2 inner concentric rings, that counts as 3 rectangles. Respond with only a number.",3,"(3, 10, -20)"
+sweep_10_0.svg,"Count the total number of stars in the image, including each concentric star separately. For example, if there is one star with 2 inner concentric rings, that counts as 3 stars. Respond with only a number.",17,"(3, 10, -30)"
+sweep_10_1.svg,"Count the total number of octagons in the image, including each concentric octagon separately. For example, if there is one octagon with 2 inner concentric rings, that counts as 3 octagons. Respond with only a number.",7,"(3, 10, -30)"
+sweep_10_2.svg,"Count the total number of circles in the image, including each concentric circle separately. For example, if there is one circle with 2 inner concentric rings, that counts as 3 circles. Respond with only a number.",8,"(3, 10, -30)"
+sweep_10_3.svg,"Count the total number of circles in the image, including each concentric circle separately. For example, if there is one circle with 2 inner concentric rings, that counts as 3 circles. Respond with only a number.",3,"(3, 10, -30)"
+sweep_10_4.svg,"Count the total number of octagons in the image, including each concentric octagon separately. For example, if there is one octagon with 2 inner concentric rings, that counts as 3 octagons. Respond with only a number.",14,"(3, 10, -30)"
+sweep_10_5.svg,"Count the total number of circles in the image, including each concentric circle separately. For example, if there is one circle with 2 inner concentric rings, that counts as 3 circles. Respond with only a number.",7,"(3, 10, -30)"
+sweep_10_6.svg,"Count the total number of triangles in the image, including each concentric triangle separately. For example, if there is one triangle with 2 inner concentric rings, that counts as 3 triangles. Respond with only a number.",16,"(3, 10, -30)"
+sweep_10_7.svg,"Count the total number of octagons in the image, including each concentric octagon separately. For example, if there is one octagon with 2 inner concentric rings, that counts as 3 octagons. Respond with only a number.",10,"(3, 10, -30)"
+sweep_10_8.svg,"Count the total number of octagons in the image, including each concentric octagon separately. For example, if there is one octagon with 2 inner concentric rings, that counts as 3 octagons. Respond with only a number.",7,"(3, 10, -30)"
+sweep_10_9.svg,"Count the total number of stars in the image, including each concentric star separately. For example, if there is one star with 2 inner concentric rings, that counts as 3 stars. Respond with only a number.",4,"(3, 10, -30)"
+sweep_11_0.svg,"Count the total number of hexagons in the image, including each concentric hexagon separately. For example, if there is one hexagon with 2 inner concentric rings, that counts as 3 hexagons. Respond with only a number.",4,"(3, 10, -40)"
+sweep_11_1.svg,"Count the total number of rectangles in the image, including each concentric rectangle separately. For example, if there is one rectangle with 2 inner concentric rings, that counts as 3 rectangles. Respond with only a number.",1,"(3, 10, -40)"
+sweep_11_2.svg,"Count the total number of circles in the image, including each concentric circle separately. For example, if there is one circle with 2 inner concentric rings, that counts as 3 circles. Respond with only a number.",12,"(3, 10, -40)"
+sweep_11_3.svg,"Count the total number of pentagons in the image, including each concentric pentagon separately. For example, if there is one pentagon with 2 inner concentric rings, that counts as 3 pentagons. Respond with only a number.",10,"(3, 10, -40)"
+sweep_11_4.svg,"Count the total number of triangles in the image, including each concentric triangle separately. For example, if there is one triangle with 2 inner concentric rings, that counts as 3 triangles. Respond with only a number.",12,"(3, 10, -40)"
+sweep_11_5.svg,"Count the total number of octagons in the image, including each concentric octagon separately. For example, if there is one octagon with 2 inner concentric rings, that counts as 3 octagons. Respond with only a number.",5,"(3, 10, -40)"
+sweep_11_6.svg,"Count the total number of octagons in the image, including each concentric octagon separately. For example, if there is one octagon with 2 inner concentric rings, that counts as 3 octagons. Respond with only a number.",3,"(3, 10, -40)"
+sweep_11_7.svg,"Count the total number of rectangles in the image, including each concentric rectangle separately. For example, if there is one rectangle with 2 inner concentric rings, that counts as 3 rectangles. Respond with only a number.",10,"(3, 10, -40)"
+sweep_11_8.svg,"Count the total number of stars in the image, including each concentric star separately. For example, if there is one star with 2 inner concentric rings, that counts as 3 stars. Respond with only a number.",8,"(3, 10, -40)"
+sweep_11_9.svg,"Count the total number of hexagons in the image, including each concentric hexagon separately. For example, if there is one hexagon with 2 inner concentric rings, that counts as 3 hexagons. Respond with only a number.",9,"(3, 10, -40)"
+sweep_12_0.svg,"Count the total number of rectangles in the image, including each concentric rectangle separately. For example, if there is one rectangle with 2 inner concentric rings, that counts as 3 rectangles. Respond with only a number.",2,"(7, 3, 10)"
+sweep_12_1.svg,"Count the total number of triangles in the image, including each concentric triangle separately. For example, if there is one triangle with 2 inner concentric rings, that counts as 3 triangles. Respond with only a number.",3,"(7, 3, 10)"
+sweep_12_2.svg,"Count the total number of octagons in the image, including each concentric octagon separately. For example, if there is one octagon with 2 inner concentric rings, that counts as 3 octagons. Respond with only a number.",1,"(7, 3, 10)"
+sweep_12_3.svg,"Count the total number of pentagons in the image, including each concentric pentagon separately. For example, if there is one pentagon with 2 inner concentric rings, that counts as 3 pentagons. Respond with only a number.",3,"(7, 3, 10)"
+sweep_12_4.svg,"Count the total number of triangles in the image, including each concentric triangle separately. For example, if there is one triangle with 2 inner concentric rings, that counts as 3 triangles. Respond with only a number.",5,"(7, 3, 10)"
+sweep_12_5.svg,"Count the total number of octagons in the image, including each concentric octagon separately. For example, if there is one octagon with 2 inner concentric rings, that counts as 3 octagons. Respond with only a number.",1,"(7, 3, 10)"
+sweep_12_6.svg,"Count the total number of pentagons in the image, including each concentric pentagon separately. For example, if there is one pentagon with 2 inner concentric rings, that counts as 3 pentagons. Respond with only a number.",3,"(7, 3, 10)"
+sweep_12_7.svg,"Count the total number of stars in the image, including each concentric star separately. For example, if there is one star with 2 inner concentric rings, that counts as 3 stars. Respond with only a number.",2,"(7, 3, 10)"
+sweep_12_8.svg,"Count the total number of triangles in the image, including each concentric triangle separately. For example, if there is one triangle with 2 inner concentric rings, that counts as 3 triangles. Respond with only a number.",3,"(7, 3, 10)"
+sweep_12_9.svg,"Count the total number of octagons in the image, including each concentric octagon separately. For example, if there is one octagon with 2 inner concentric rings, that counts as 3 octagons. Respond with only a number.",2,"(7, 3, 10)"
+sweep_13_0.svg,"Count the total number of circles in the image, including each concentric circle separately. For example, if there is one circle with 2 inner concentric rings, that counts as 3 circles. Respond with only a number.",4,"(7, 3, -20)"
+sweep_13_1.svg,"Count the total number of pentagons in the image, including each concentric pentagon separately. For example, if there is one pentagon with 2 inner concentric rings, that counts as 3 pentagons. Respond with only a number.",5,"(7, 3, -20)"
+sweep_13_2.svg,"Count the total number of rectangles in the image, including each concentric rectangle separately. For example, if there is one rectangle with 2 inner concentric rings, that counts as 3 rectangles. Respond with only a number.",5,"(7, 3, -20)"
+sweep_13_3.svg,"Count the total number of pentagons in the image, including each concentric pentagon separately. For example, if there is one pentagon with 2 inner concentric rings, that counts as 3 pentagons. Respond with only a number.",4,"(7, 3, -20)"
+sweep_13_4.svg,"Count the total number of hexagons in the image, including each concentric hexagon separately. For example, if there is one hexagon with 2 inner concentric rings, that counts as 3 hexagons. Respond with only a number.",3,"(7, 3, -20)"
+sweep_13_5.svg,"Count the total number of triangles in the image, including each concentric triangle separately. For example, if there is one triangle with 2 inner concentric rings, that counts as 3 triangles. Respond with only a number.",1,"(7, 3, -20)"
+sweep_13_6.svg,"Count the total number of hexagons in the image, including each concentric hexagon separately. For example, if there is one hexagon with 2 inner concentric rings, that counts as 3 hexagons. Respond with only a number.",2,"(7, 3, -20)"
+sweep_13_7.svg,"Count the total number of octagons in the image, including each concentric octagon separately. For example, if there is one octagon with 2 inner concentric rings, that counts as 3 octagons. Respond with only a number.",2,"(7, 3, -20)"
+sweep_13_8.svg,"Count the total number of pentagons in the image, including each concentric pentagon separately. For example, if there is one pentagon with 2 inner concentric rings, that counts as 3 pentagons. Respond with only a number.",2,"(7, 3, -20)"
+sweep_13_9.svg,"Count the total number of pentagons in the image, including each concentric pentagon separately. For example, if there is one pentagon with 2 inner concentric rings, that counts as 3 pentagons. Respond with only a number.",2,"(7, 3, -20)"
+sweep_14_0.svg,"Count the total number of octagons in the image, including each concentric octagon separately. For example, if there is one octagon with 2 inner concentric rings, that counts as 3 octagons. Respond with only a number.",1,"(7, 3, -30)"
+sweep_14_1.svg,"Count the total number of circles in the image, including each concentric circle separately. For example, if there is one circle with 2 inner concentric rings, that counts as 3 circles. Respond with only a number.",1,"(7, 3, -30)"
+sweep_14_2.svg,"Count the total number of triangles in the image, including each concentric triangle separately. For example, if there is one triangle with 2 inner concentric rings, that counts as 3 triangles. Respond with only a number.",2,"(7, 3, -30)"
+sweep_14_3.svg,"Count the total number of circles in the image, including each concentric circle separately. For example, if there is one circle with 2 inner concentric rings, that counts as 3 circles. Respond with only a number.",2,"(7, 3, -30)"
+sweep_14_4.svg,"Count the total number of triangles in the image, including each concentric triangle separately. For example, if there is one triangle with 2 inner concentric rings, that counts as 3 triangles. Respond with only a number.",2,"(7, 3, -30)"
+sweep_14_5.svg,"Count the total number of hexagons in the image, including each concentric hexagon separately. For example, if there is one hexagon with 2 inner concentric rings, that counts as 3 hexagons. Respond with only a number.",1,"(7, 3, -30)"
+sweep_14_6.svg,"Count the total number of rectangles in the image, including each concentric rectangle separately. For example, if there is one rectangle with 2 inner concentric rings, that counts as 3 rectangles. Respond with only a number.",5,"(7, 3, -30)"
+sweep_14_7.svg,"Count the total number of hexagons in the image, including each concentric hexagon separately. For example, if there is one hexagon with 2 inner concentric rings, that counts as 3 hexagons. Respond with only a number.",3,"(7, 3, -30)"
+sweep_14_8.svg,"Count the total number of circles in the image, including each concentric circle separately. For example, if there is one circle with 2 inner concentric rings, that counts as 3 circles. Respond with only a number.",1,"(7, 3, -30)"
+sweep_14_9.svg,"Count the total number of stars in the image, including each concentric star separately. For example, if there is one star with 2 inner concentric rings, that counts as 3 stars. Respond with only a number.",2,"(7, 3, -30)"
+sweep_15_0.svg,"Count the total number of stars in the image, including each concentric star separately. For example, if there is one star with 2 inner concentric rings, that counts as 3 stars. Respond with only a number.",1,"(7, 3, -40)"
+sweep_15_1.svg,"Count the total number of stars in the image, including each concentric star separately. For example, if there is one star with 2 inner concentric rings, that counts as 3 stars. Respond with only a number.",6,"(7, 3, -40)"
+sweep_15_2.svg,"Count the total number of hexagons in the image, including each concentric hexagon separately. For example, if there is one hexagon with 2 inner concentric rings, that counts as 3 hexagons. Respond with only a number.",1,"(7, 3, -40)"
+sweep_15_3.svg,"Count the total number of pentagons in the image, including each concentric pentagon separately. For example, if there is one pentagon with 2 inner concentric rings, that counts as 3 pentagons. Respond with only a number.",3,"(7, 3, -40)"
+sweep_15_4.svg,"Count the total number of octagons in the image, including each concentric octagon separately. For example, if there is one octagon with 2 inner concentric rings, that counts as 3 octagons. Respond with only a number.",7,"(7, 3, -40)"
+sweep_15_5.svg,"Count the total number of rectangles in the image, including each concentric rectangle separately. For example, if there is one rectangle with 2 inner concentric rings, that counts as 3 rectangles. Respond with only a number.",2,"(7, 3, -40)"
+sweep_15_6.svg,"Count the total number of triangles in the image, including each concentric triangle separately. For example, if there is one triangle with 2 inner concentric rings, that counts as 3 triangles. Respond with only a number.",6,"(7, 3, -40)"
+sweep_15_7.svg,"Count the total number of circles in the image, including each concentric circle separately. For example, if there is one circle with 2 inner concentric rings, that counts as 3 circles. Respond with only a number.",6,"(7, 3, -40)"
+sweep_15_8.svg,"Count the total number of octagons in the image, including each concentric octagon separately. For example, if there is one octagon with 2 inner concentric rings, that counts as 3 octagons. Respond with only a number.",2,"(7, 3, -40)"
+sweep_15_9.svg,"Count the total number of stars in the image, including each concentric star separately. For example, if there is one star with 2 inner concentric rings, that counts as 3 stars. Respond with only a number.",2,"(7, 3, -40)"
+sweep_16_0.svg,"Count the total number of octagons in the image, including each concentric octagon separately. For example, if there is one octagon with 2 inner concentric rings, that counts as 3 octagons. Respond with only a number.",11,"(7, 6, 10)"
+sweep_16_1.svg,"Count the total number of stars in the image, including each concentric star separately. For example, if there is one star with 2 inner concentric rings, that counts as 3 stars. Respond with only a number.",5,"(7, 6, 10)"
+sweep_16_2.svg,"Count the total number of octagons in the image, including each concentric octagon separately. For example, if there is one octagon with 2 inner concentric rings, that counts as 3 octagons. Respond with only a number.",2,"(7, 6, 10)"
+sweep_16_3.svg,"Count the total number of hexagons in the image, including each concentric hexagon separately. For example, if there is one hexagon with 2 inner concentric rings, that counts as 3 hexagons. Respond with only a number.",4,"(7, 6, 10)"
+sweep_16_4.svg,"Count the total number of octagons in the image, including each concentric octagon separately. For example, if there is one octagon with 2 inner concentric rings, that counts as 3 octagons. Respond with only a number.",5,"(7, 6, 10)"
+sweep_16_5.svg,"Count the total number of stars in the image, including each concentric star separately. For example, if there is one star with 2 inner concentric rings, that counts as 3 stars. Respond with only a number.",3,"(7, 6, 10)"
+sweep_16_6.svg,"Count the total number of circles in the image, including each concentric circle separately. For example, if there is one circle with 2 inner concentric rings, that counts as 3 circles. Respond with only a number.",10,"(7, 6, 10)"
+sweep_16_7.svg,"Count the total number of hexagons in the image, including each concentric hexagon separately. For example, if there is one hexagon with 2 inner concentric rings, that counts as 3 hexagons. Respond with only a number.",4,"(7, 6, 10)"
+sweep_16_8.svg,"Count the total number of rectangles in the image, including each concentric rectangle separately. For example, if there is one rectangle with 2 inner concentric rings, that counts as 3 rectangles. Respond with only a number.",3,"(7, 6, 10)"
+sweep_16_9.svg,"Count the total number of octagons in the image, including each concentric octagon separately. For example, if there is one octagon with 2 inner concentric rings, that counts as 3 octagons. Respond with only a number.",8,"(7, 6, 10)"
+sweep_17_0.svg,"Count the total number of triangles in the image, including each concentric triangle separately. For example, if there is one triangle with 2 inner concentric rings, that counts as 3 triangles. Respond with only a number.",3,"(7, 6, -20)"
+sweep_17_1.svg,"Count the total number of triangles in the image, including each concentric triangle separately. For example, if there is one triangle with 2 inner concentric rings, that counts as 3 triangles. Respond with only a number.",3,"(7, 6, -20)"
+sweep_17_2.svg,"Count the total number of pentagons in the image, including each concentric pentagon separately. For example, if there is one pentagon with 2 inner concentric rings, that counts as 3 pentagons. Respond with only a number.",4,"(7, 6, -20)"
+sweep_17_3.svg,"Count the total number of circles in the image, including each concentric circle separately. For example, if there is one circle with 2 inner concentric rings, that counts as 3 circles. Respond with only a number.",5,"(7, 6, -20)"
+sweep_17_4.svg,"Count the total number of stars in the image, including each concentric star separately. For example, if there is one star with 2 inner concentric rings, that counts as 3 stars. Respond with only a number.",7,"(7, 6, -20)"
+sweep_17_5.svg,"Count the total number of circles in the image, including each concentric circle separately. For example, if there is one circle with 2 inner concentric rings, that counts as 3 circles. Respond with only a number.",2,"(7, 6, -20)"
+sweep_17_6.svg,"Count the total number of stars in the image, including each concentric star separately. For example, if there is one star with 2 inner concentric rings, that counts as 3 stars. Respond with only a number.",3,"(7, 6, -20)"
+sweep_17_7.svg,"Count the total number of pentagons in the image, including each concentric pentagon separately. For example, if there is one pentagon with 2 inner concentric rings, that counts as 3 pentagons. Respond with only a number.",1,"(7, 6, -20)"
+sweep_17_8.svg,"Count the total number of stars in the image, including each concentric star separately. For example, if there is one star with 2 inner concentric rings, that counts as 3 stars. Respond with only a number.",1,"(7, 6, -20)"
+sweep_17_9.svg,"Count the total number of hexagons in the image, including each concentric hexagon separately. For example, if there is one hexagon with 2 inner concentric rings, that counts as 3 hexagons. Respond with only a number.",6,"(7, 6, -20)"
+sweep_18_0.svg,"Count the total number of rectangles in the image, including each concentric rectangle separately. For example, if there is one rectangle with 2 inner concentric rings, that counts as 3 rectangles. Respond with only a number.",2,"(7, 6, -30)"
+sweep_18_1.svg,"Count the total number of rectangles in the image, including each concentric rectangle separately. For example, if there is one rectangle with 2 inner concentric rings, that counts as 3 rectangles. Respond with only a number.",5,"(7, 6, -30)"
+sweep_18_2.svg,"Count the total number of triangles in the image, including each concentric triangle separately. For example, if there is one triangle with 2 inner concentric rings, that counts as 3 triangles. Respond with only a number.",1,"(7, 6, -30)"
+sweep_18_3.svg,"Count the total number of octagons in the image, including each concentric octagon separately. For example, if there is one octagon with 2 inner concentric rings, that counts as 3 octagons. Respond with only a number.",1,"(7, 6, -30)"
+sweep_18_4.svg,"Count the total number of stars in the image, including each concentric star separately. For example, if there is one star with 2 inner concentric rings, that counts as 3 stars. Respond with only a number.",4,"(7, 6, -30)"
+sweep_18_5.svg,"Count the total number of rectangles in the image, including each concentric rectangle separately. For example, if there is one rectangle with 2 inner concentric rings, that counts as 3 rectangles. Respond with only a number.",8,"(7, 6, -30)"
+sweep_18_6.svg,"Count the total number of pentagons in the image, including each concentric pentagon separately. For example, if there is one pentagon with 2 inner concentric rings, that counts as 3 pentagons. Respond with only a number.",6,"(7, 6, -30)"
+sweep_18_7.svg,"Count the total number of stars in the image, including each concentric star separately. For example, if there is one star with 2 inner concentric rings, that counts as 3 stars. Respond with only a number.",6,"(7, 6, -30)"
+sweep_18_8.svg,"Count the total number of stars in the image, including each concentric star separately. For example, if there is one star with 2 inner concentric rings, that counts as 3 stars. Respond with only a number.",3,"(7, 6, -30)"
+sweep_18_9.svg,"Count the total number of rectangles in the image, including each concentric rectangle separately. For example, if there is one rectangle with 2 inner concentric rings, that counts as 3 rectangles. Respond with only a number.",4,"(7, 6, -30)"
+sweep_19_0.svg,"Count the total number of pentagons in the image, including each concentric pentagon separately. For example, if there is one pentagon with 2 inner concentric rings, that counts as 3 pentagons. Respond with only a number.",8,"(7, 6, -40)"
+sweep_19_1.svg,"Count the total number of pentagons in the image, including each concentric pentagon separately. For example, if there is one pentagon with 2 inner concentric rings, that counts as 3 pentagons. Respond with only a number.",7,"(7, 6, -40)"
+sweep_19_2.svg,"Count the total number of octagons in the image, including each concentric octagon separately. For example, if there is one octagon with 2 inner concentric rings, that counts as 3 octagons. Respond with only a number.",1,"(7, 6, -40)"
+sweep_19_3.svg,"Count the total number of stars in the image, including each concentric star separately. For example, if there is one star with 2 inner concentric rings, that counts as 3 stars. Respond with only a number.",9,"(7, 6, -40)"
+sweep_19_4.svg,"Count the total number of triangles in the image, including each concentric triangle separately. For example, if there is one triangle with 2 inner concentric rings, that counts as 3 triangles. Respond with only a number.",4,"(7, 6, -40)"
+sweep_19_5.svg,"Count the total number of circles in the image, including each concentric circle separately. For example, if there is one circle with 2 inner concentric rings, that counts as 3 circles. Respond with only a number.",4,"(7, 6, -40)"
+sweep_19_6.svg,"Count the total number of hexagons in the image, including each concentric hexagon separately. For example, if there is one hexagon with 2 inner concentric rings, that counts as 3 hexagons. Respond with only a number.",7,"(7, 6, -40)"
+sweep_19_7.svg,"Count the total number of octagons in the image, including each concentric octagon separately. For example, if there is one octagon with 2 inner concentric rings, that counts as 3 octagons. Respond with only a number.",3,"(7, 6, -40)"
+sweep_19_8.svg,"Count the total number of triangles in the image, including each concentric triangle separately. For example, if there is one triangle with 2 inner concentric rings, that counts as 3 triangles. Respond with only a number.",7,"(7, 6, -40)"
+sweep_19_9.svg,"Count the total number of circles in the image, including each concentric circle separately. For example, if there is one circle with 2 inner concentric rings, that counts as 3 circles. Respond with only a number.",10,"(7, 6, -40)"
+sweep_20_0.svg,"Count the total number of triangles in the image, including each concentric triangle separately. For example, if there is one triangle with 2 inner concentric rings, that counts as 3 triangles. Respond with only a number.",1,"(7, 10, 10)"
+sweep_20_1.svg,"Count the total number of stars in the image, including each concentric star separately. For example, if there is one star with 2 inner concentric rings, that counts as 3 stars. Respond with only a number.",15,"(7, 10, 10)"
+sweep_20_2.svg,"Count the total number of octagons in the image, including each concentric octagon separately. For example, if there is one octagon with 2 inner concentric rings, that counts as 3 octagons. Respond with only a number.",3,"(7, 10, 10)"
+sweep_20_3.svg,"Count the total number of rectangles in the image, including each concentric rectangle separately. For example, if there is one rectangle with 2 inner concentric rings, that counts as 3 rectangles. Respond with only a number.",11,"(7, 10, 10)"
+sweep_20_4.svg,"Count the total number of triangles in the image, including each concentric triangle separately. For example, if there is one triangle with 2 inner concentric rings, that counts as 3 triangles. Respond with only a number.",1,"(7, 10, 10)"
+sweep_20_5.svg,"Count the total number of stars in the image, including each concentric star separately. For example, if there is one star with 2 inner concentric rings, that counts as 3 stars. Respond with only a number.",4,"(7, 10, 10)"
+sweep_20_6.svg,"Count the total number of triangles in the image, including each concentric triangle separately. For example, if there is one triangle with 2 inner concentric rings, that counts as 3 triangles. Respond with only a number.",9,"(7, 10, 10)"
+sweep_20_7.svg,"Count the total number of octagons in the image, including each concentric octagon separately. For example, if there is one octagon with 2 inner concentric rings, that counts as 3 octagons. Respond with only a number.",5,"(7, 10, 10)"
+sweep_20_8.svg,"Count the total number of stars in the image, including each concentric star separately. For example, if there is one star with 2 inner concentric rings, that counts as 3 stars. Respond with only a number.",1,"(7, 10, 10)"
+sweep_20_9.svg,"Count the total number of triangles in the image, including each concentric triangle separately. For example, if there is one triangle with 2 inner concentric rings, that counts as 3 triangles. Respond with only a number.",1,"(7, 10, 10)"
+sweep_21_0.svg,"Count the total number of stars in the image, including each concentric star separately. For example, if there is one star with 2 inner concentric rings, that counts as 3 stars. Respond with only a number.",1,"(7, 10, -20)"
+sweep_21_1.svg,"Count the total number of triangles in the image, including each concentric triangle separately. For example, if there is one triangle with 2 inner concentric rings, that counts as 3 triangles. Respond with only a number.",4,"(7, 10, -20)"
+sweep_21_2.svg,"Count the total number of stars in the image, including each concentric star separately. For example, if there is one star with 2 inner concentric rings, that counts as 3 stars. Respond with only a number.",9,"(7, 10, -20)"
+sweep_21_3.svg,"Count the total number of hexagons in the image, including each concentric hexagon separately. For example, if there is one hexagon with 2 inner concentric rings, that counts as 3 hexagons. Respond with only a number.",9,"(7, 10, -20)"
+sweep_21_4.svg,"Count the total number of stars in the image, including each concentric star separately. For example, if there is one star with 2 inner concentric rings, that counts as 3 stars. Respond with only a number.",9,"(7, 10, -20)"
+sweep_21_5.svg,"Count the total number of octagons in the image, including each concentric octagon separately. For example, if there is one octagon with 2 inner concentric rings, that counts as 3 octagons. Respond with only a number.",8,"(7, 10, -20)"
+sweep_21_6.svg,"Count the total number of pentagons in the image, including each concentric pentagon separately. For example, if there is one pentagon with 2 inner concentric rings, that counts as 3 pentagons. Respond with only a number.",13,"(7, 10, -20)"
+sweep_21_7.svg,"Count the total number of stars in the image, including each concentric star separately. For example, if there is one star with 2 inner concentric rings, that counts as 3 stars. Respond with only a number.",12,"(7, 10, -20)"
+sweep_21_8.svg,"Count the total number of stars in the image, including each concentric star separately. For example, if there is one star with 2 inner concentric rings, that counts as 3 stars. Respond with only a number.",1,"(7, 10, -20)"
+sweep_21_9.svg,"Count the total number of triangles in the image, including each concentric triangle separately. For example, if there is one triangle with 2 inner concentric rings, that counts as 3 triangles. Respond with only a number.",4,"(7, 10, -20)"
+sweep_22_0.svg,"Count the total number of pentagons in the image, including each concentric pentagon separately. For example, if there is one pentagon with 2 inner concentric rings, that counts as 3 pentagons. Respond with only a number.",3,"(7, 10, -30)"
+sweep_22_1.svg,"Count the total number of hexagons in the image, including each concentric hexagon separately. For example, if there is one hexagon with 2 inner concentric rings, that counts as 3 hexagons. Respond with only a number.",1,"(7, 10, -30)"
+sweep_22_2.svg,"Count the total number of stars in the image, including each concentric star separately. For example, if there is one star with 2 inner concentric rings, that counts as 3 stars. Respond with only a number.",8,"(7, 10, -30)"
+sweep_22_3.svg,"Count the total number of pentagons in the image, including each concentric pentagon separately. For example, if there is one pentagon with 2 inner concentric rings, that counts as 3 pentagons. Respond with only a number.",4,"(7, 10, -30)"
+sweep_22_4.svg,"Count the total number of pentagons in the image, including each concentric pentagon separately. For example, if there is one pentagon with 2 inner concentric rings, that counts as 3 pentagons. Respond with only a number.",11,"(7, 10, -30)"
+sweep_22_5.svg,"Count the total number of hexagons in the image, including each concentric hexagon separately. For example, if there is one hexagon with 2 inner concentric rings, that counts as 3 hexagons. Respond with only a number.",1,"(7, 10, -30)"
+sweep_22_6.svg,"Count the total number of triangles in the image, including each concentric triangle separately. For example, if there is one triangle with 2 inner concentric rings, that counts as 3 triangles. Respond with only a number.",3,"(7, 10, -30)"
+sweep_22_7.svg,"Count the total number of octagons in the image, including each concentric octagon separately. For example, if there is one octagon with 2 inner concentric rings, that counts as 3 octagons. Respond with only a number.",5,"(7, 10, -30)"
+sweep_22_8.svg,"Count the total number of triangles in the image, including each concentric triangle separately. For example, if there is one triangle with 2 inner concentric rings, that counts as 3 triangles. Respond with only a number.",1,"(7, 10, -30)"
+sweep_22_9.svg,"Count the total number of pentagons in the image, including each concentric pentagon separately. For example, if there is one pentagon with 2 inner concentric rings, that counts as 3 pentagons. Respond with only a number.",5,"(7, 10, -30)"
+sweep_23_0.svg,"Count the total number of pentagons in the image, including each concentric pentagon separately. For example, if there is one pentagon with 2 inner concentric rings, that counts as 3 pentagons. Respond with only a number.",16,"(7, 10, -40)"
+sweep_23_1.svg,"Count the total number of octagons in the image, including each concentric octagon separately. For example, if there is one octagon with 2 inner concentric rings, that counts as 3 octagons. Respond with only a number.",5,"(7, 10, -40)"
+sweep_23_2.svg,"Count the total number of rectangles in the image, including each concentric rectangle separately. For example, if there is one rectangle with 2 inner concentric rings, that counts as 3 rectangles. Respond with only a number.",8,"(7, 10, -40)"
+sweep_23_3.svg,"Count the total number of octagons in the image, including each concentric octagon separately. For example, if there is one octagon with 2 inner concentric rings, that counts as 3 octagons. Respond with only a number.",5,"(7, 10, -40)"
+sweep_23_4.svg,"Count the total number of stars in the image, including each concentric star separately. For example, if there is one star with 2 inner concentric rings, that counts as 3 stars. Respond with only a number.",8,"(7, 10, -40)"
+sweep_23_5.svg,"Count the total number of triangles in the image, including each concentric triangle separately. For example, if there is one triangle with 2 inner concentric rings, that counts as 3 triangles. Respond with only a number.",8,"(7, 10, -40)"
+sweep_23_6.svg,"Count the total number of hexagons in the image, including each concentric hexagon separately. For example, if there is one hexagon with 2 inner concentric rings, that counts as 3 hexagons. Respond with only a number.",4,"(7, 10, -40)"
+sweep_23_7.svg,"Count the total number of octagons in the image, including each concentric octagon separately. For example, if there is one octagon with 2 inner concentric rings, that counts as 3 octagons. Respond with only a number.",14,"(7, 10, -40)"
+sweep_23_8.svg,"Count the total number of rectangles in the image, including each concentric rectangle separately. For example, if there is one rectangle with 2 inner concentric rings, that counts as 3 rectangles. Respond with only a number.",4,"(7, 10, -40)"
+sweep_23_9.svg,"Count the total number of rectangles in the image, including each concentric rectangle separately. For example, if there is one rectangle with 2 inner concentric rings, that counts as 3 rectangles. Respond with only a number.",9,"(7, 10, -40)"
diff --git a/2D_DoYouSeeMe/letter_disambiguation/1.png b/2D_DoYouSeeMe/letter_disambiguation/1.png
new file mode 100644
index 0000000000000000000000000000000000000000..fe38b652277665f9da5cb22275de2c870aa6f8dd
--- /dev/null
+++ b/2D_DoYouSeeMe/letter_disambiguation/1.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9e9d7e41ec09f0068771bcc43ea428b28f2dff868729a99fe7b4e9226e89a635
+size 5108
diff --git a/2D_DoYouSeeMe/letter_disambiguation/100.png b/2D_DoYouSeeMe/letter_disambiguation/100.png
new file mode 100644
index 0000000000000000000000000000000000000000..df57ca809c7b2d7ebc869184963f54ae223522be
--- /dev/null
+++ b/2D_DoYouSeeMe/letter_disambiguation/100.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:01609ebd4999e2153069167b8a22834f574424d15ca5bf06079a393616520a2d
+size 12687
diff --git a/2D_DoYouSeeMe/letter_disambiguation/50.png b/2D_DoYouSeeMe/letter_disambiguation/50.png
new file mode 100644
index 0000000000000000000000000000000000000000..d71861fd9bb2ba88c0ca23d59515b2bc5bdec25a
--- /dev/null
+++ b/2D_DoYouSeeMe/letter_disambiguation/50.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:52d548a8849d8c6d19c4a1e1ee22e45984204584981bc33e225959681b74fce7
+size 9782
diff --git a/2D_DoYouSeeMe/letter_disambiguation/dataset_info.csv b/2D_DoYouSeeMe/letter_disambiguation/dataset_info.csv
new file mode 100644
index 0000000000000000000000000000000000000000..275cd47162a821c674c80a7604178718c12292b4
--- /dev/null
+++ b/2D_DoYouSeeMe/letter_disambiguation/dataset_info.csv
@@ -0,0 +1,136 @@
+filename,answer,sweep
+0.svg,T,"(1, 1, 0.04)"
+1.svg,D,"(1, 1, 0.04)"
+2.svg,K,"(1, 1, 0.04)"
+3.svg,R,"(1, 1, 0.04)"
+4.svg,H,"(1, 1, 0.04)"
+5.svg,Y,"(1, 1, 0.08)"
+6.svg,G,"(1, 1, 0.08)"
+7.svg,S,"(1, 1, 0.08)"
+8.svg,O,"(1, 1, 0.08)"
+9.svg,Q,"(1, 1, 0.08)"
+10.svg,O,"(1, 1, 0.1)"
+11.svg,F,"(1, 1, 0.1)"
+12.svg,A,"(1, 1, 0.1)"
+13.svg,D,"(1, 1, 0.1)"
+14.svg,R,"(1, 1, 0.1)"
+15.svg,N,"(1, 2, 0.04)"
+16.svg,N,"(1, 2, 0.04)"
+17.svg,D,"(1, 2, 0.04)"
+18.svg,C,"(1, 2, 0.04)"
+19.svg,G,"(1, 2, 0.04)"
+20.svg,I,"(1, 2, 0.08)"
+21.svg,H,"(1, 2, 0.08)"
+22.svg,L,"(1, 2, 0.08)"
+23.svg,Z,"(1, 2, 0.08)"
+24.svg,T,"(1, 2, 0.08)"
+25.svg,K,"(1, 2, 0.1)"
+26.svg,M,"(1, 2, 0.1)"
+27.svg,L,"(1, 2, 0.1)"
+28.svg,J,"(1, 2, 0.1)"
+29.svg,X,"(1, 2, 0.1)"
+30.svg,H,"(1, 3, 0.04)"
+31.svg,K,"(1, 3, 0.04)"
+32.svg,Z,"(1, 3, 0.04)"
+33.svg,Q,"(1, 3, 0.04)"
+34.svg,X,"(1, 3, 0.04)"
+35.svg,H,"(1, 3, 0.08)"
+36.svg,B,"(1, 3, 0.08)"
+37.svg,X,"(1, 3, 0.08)"
+38.svg,K,"(1, 3, 0.08)"
+39.svg,M,"(1, 3, 0.08)"
+40.svg,D,"(1, 3, 0.1)"
+41.svg,B,"(1, 3, 0.1)"
+42.svg,F,"(1, 3, 0.1)"
+43.svg,E,"(1, 3, 0.1)"
+44.svg,T,"(1, 3, 0.1)"
+45.svg,XBBOT,"(5, 1, 0.04)"
+46.svg,CJWZM,"(5, 1, 0.04)"
+47.svg,ZULJK,"(5, 1, 0.04)"
+48.svg,CYWDV,"(5, 1, 0.04)"
+49.svg,OCUEC,"(5, 1, 0.04)"
+50.svg,UNFME,"(5, 1, 0.08)"
+51.svg,XNMNG,"(5, 1, 0.08)"
+52.svg,MGRQN,"(5, 1, 0.08)"
+53.svg,EWOXO,"(5, 1, 0.08)"
+54.svg,WZVLS,"(5, 1, 0.08)"
+55.svg,YWBQK,"(5, 1, 0.1)"
+56.svg,BOUNG,"(5, 1, 0.1)"
+57.svg,KQOHJ,"(5, 1, 0.1)"
+58.svg,JIZBS,"(5, 1, 0.1)"
+59.svg,NSSIR,"(5, 1, 0.1)"
+60.svg,CHXJH,"(5, 2, 0.04)"
+61.svg,OLMLP,"(5, 2, 0.04)"
+62.svg,CXJGE,"(5, 2, 0.04)"
+63.svg,GTJUE,"(5, 2, 0.04)"
+64.svg,MBJCJ,"(5, 2, 0.04)"
+65.svg,MDLSG,"(5, 2, 0.08)"
+66.svg,KVNNY,"(5, 2, 0.08)"
+67.svg,TQBXY,"(5, 2, 0.08)"
+68.svg,QKSVI,"(5, 2, 0.08)"
+69.svg,YCFTG,"(5, 2, 0.08)"
+70.svg,RDPZI,"(5, 2, 0.1)"
+71.svg,IHTEL,"(5, 2, 0.1)"
+72.svg,UJIZR,"(5, 2, 0.1)"
+73.svg,WHHII,"(5, 2, 0.1)"
+74.svg,EYMPX,"(5, 2, 0.1)"
+75.svg,LSHPI,"(5, 3, 0.04)"
+76.svg,MUBGY,"(5, 3, 0.04)"
+77.svg,IWHHF,"(5, 3, 0.04)"
+78.svg,DOKZE,"(5, 3, 0.04)"
+79.svg,HWZPP,"(5, 3, 0.04)"
+80.svg,PUGIF,"(5, 3, 0.08)"
+81.svg,KTQME,"(5, 3, 0.08)"
+82.svg,KZZFG,"(5, 3, 0.08)"
+83.svg,YBYOC,"(5, 3, 0.08)"
+84.svg,EGSTA,"(5, 3, 0.08)"
+85.svg,MRGJH,"(5, 3, 0.1)"
+86.svg,SWYPN,"(5, 3, 0.1)"
+87.svg,IOLUF,"(5, 3, 0.1)"
+88.svg,THPSY,"(5, 3, 0.1)"
+89.svg,CWTWH,"(5, 3, 0.1)"
+90.svg,YUTPSKNTG,"(9, 1, 0.04)"
+91.svg,TOGSJZWQS,"(9, 1, 0.04)"
+92.svg,HIYBASSOF,"(9, 1, 0.04)"
+93.svg,MIAGPZMRR,"(9, 1, 0.04)"
+94.svg,WZGIZDJWS,"(9, 1, 0.04)"
+95.svg,QKRUWYVPK,"(9, 1, 0.08)"
+96.svg,ZOBWEJJPF,"(9, 1, 0.08)"
+97.svg,UGEZWQPZI,"(9, 1, 0.08)"
+98.svg,ZTFKFBLPA,"(9, 1, 0.08)"
+99.svg,LIIAAISBC,"(9, 1, 0.08)"
+100.svg,YJPIMUTES,"(9, 1, 0.1)"
+101.svg,QXPAEDQNY,"(9, 1, 0.1)"
+102.svg,POORLUASX,"(9, 1, 0.1)"
+103.svg,SGMIGPWLR,"(9, 1, 0.1)"
+104.svg,SYASQHQCD,"(9, 1, 0.1)"
+105.svg,AXQEVOVFS,"(9, 2, 0.04)"
+106.svg,WHDBWDWAW,"(9, 2, 0.04)"
+107.svg,JUHHLDOZJ,"(9, 2, 0.04)"
+108.svg,YEORSZHFM,"(9, 2, 0.04)"
+109.svg,EDHAIVLRR,"(9, 2, 0.04)"
+110.svg,KXVMCTOWP,"(9, 2, 0.08)"
+111.svg,ZZZAONYMX,"(9, 2, 0.08)"
+112.svg,GKQZEFRWE,"(9, 2, 0.08)"
+113.svg,DETLLUKXC,"(9, 2, 0.08)"
+114.svg,DUUURLYHR,"(9, 2, 0.08)"
+115.svg,VVYNLBSGT,"(9, 2, 0.1)"
+116.svg,SNEUXHOHP,"(9, 2, 0.1)"
+117.svg,YFIQRFFSR,"(9, 2, 0.1)"
+118.svg,KJIGXATVE,"(9, 2, 0.1)"
+119.svg,DXMSNXXYL,"(9, 2, 0.1)"
+120.svg,ILWEXWZZS,"(9, 3, 0.04)"
+121.svg,PTRPCSVUV,"(9, 3, 0.04)"
+122.svg,GFRIRBOTT,"(9, 3, 0.04)"
+123.svg,JFNELQLJE,"(9, 3, 0.04)"
+124.svg,EDWMLBSKD,"(9, 3, 0.04)"
+125.svg,JJVHRCPLE,"(9, 3, 0.08)"
+126.svg,FSPIVBFDA,"(9, 3, 0.08)"
+127.svg,GMVBQNKSR,"(9, 3, 0.08)"
+128.svg,CFFNQVVWW,"(9, 3, 0.08)"
+129.svg,XTQZAQDIF,"(9, 3, 0.08)"
+130.svg,FJRXTOKSC,"(9, 3, 0.1)"
+131.svg,CJWNZMBES,"(9, 3, 0.1)"
+132.svg,LQWCYUHQR,"(9, 3, 0.1)"
+133.svg,PHYZUPMOG,"(9, 3, 0.1)"
+134.svg,AAPIZVNAW,"(9, 3, 0.1)"
diff --git a/2D_DoYouSeeMe/visual_closure/1.png b/2D_DoYouSeeMe/visual_closure/1.png
new file mode 100644
index 0000000000000000000000000000000000000000..c0afd341a515df1da2475fbd593b339bf0e0bd2a
--- /dev/null
+++ b/2D_DoYouSeeMe/visual_closure/1.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:cb023a1312dd0f859f23985ba0a652ed0678a7db6eb8983203c5037ce68d4d1d
+size 26089
diff --git a/2D_DoYouSeeMe/visual_closure/100.png b/2D_DoYouSeeMe/visual_closure/100.png
new file mode 100644
index 0000000000000000000000000000000000000000..f2a414121706f84d8d35782e827b7a0457c3fce3
--- /dev/null
+++ b/2D_DoYouSeeMe/visual_closure/100.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:e0e8f27f05724074f940b6875633d11fa1c52187f43093df421389d263006025
+size 24047
diff --git a/2D_DoYouSeeMe/visual_closure/50.png b/2D_DoYouSeeMe/visual_closure/50.png
new file mode 100644
index 0000000000000000000000000000000000000000..2485968b456fb4983e57c134c9d6ef2c8e11af69
--- /dev/null
+++ b/2D_DoYouSeeMe/visual_closure/50.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:4dd32da256e2ff2ca2d53b2e31e1d81ab4500bd76fc1cc93f971a4444aa4342a
+size 24524
diff --git a/2D_DoYouSeeMe/visual_closure/dataset_info.csv b/2D_DoYouSeeMe/visual_closure/dataset_info.csv
new file mode 100644
index 0000000000000000000000000000000000000000..7b7676aeb9ea2fb4ceb64aa560fb82c87aab3c8f
--- /dev/null
+++ b/2D_DoYouSeeMe/visual_closure/dataset_info.csv
@@ -0,0 +1,169 @@
+filename,answer,sweep
+0.png,2,"[0.1, 1, 1, 1]"
+1.png,2,"[0.1, 1, 1, 3]"
+2.png,2,"[0.1, 1, 3, 1]"
+3.png,2,"[0.1, 1, 3, 3]"
+4.png,4,"[0.1, 3, 1, 1]"
+5.png,4,"[0.1, 3, 1, 3]"
+6.png,3,"[0.1, 3, 3, 1]"
+7.png,3,"[0.1, 3, 3, 3]"
+8.png,3,"[0.12, 1, 1, 1]"
+9.png,3,"[0.12, 1, 1, 3]"
+10.png,2,"[0.12, 1, 3, 1]"
+11.png,4,"[0.12, 1, 3, 3]"
+12.png,1,"[0.12, 3, 1, 1]"
+13.png,4,"[0.12, 3, 1, 3]"
+14.png,1,"[0.12, 3, 3, 1]"
+15.png,1,"[0.12, 3, 3, 3]"
+16.png,3,"[0.14, 1, 1, 1]"
+17.png,1,"[0.14, 1, 1, 3]"
+18.png,4,"[0.14, 1, 3, 1]"
+19.png,4,"[0.14, 1, 3, 3]"
+20.png,3,"[0.14, 3, 1, 1]"
+21.png,2,"[0.14, 3, 1, 3]"
+22.png,1,"[0.14, 3, 3, 1]"
+23.png,1,"[0.14, 3, 3, 3]"
+24.png,4,"[0.1, 1, 1, 1]"
+25.png,3,"[0.1, 1, 1, 3]"
+26.png,1,"[0.1, 1, 3, 1]"
+27.png,2,"[0.1, 1, 3, 3]"
+28.png,2,"[0.1, 3, 1, 1]"
+29.png,3,"[0.1, 3, 1, 3]"
+30.png,1,"[0.1, 3, 3, 1]"
+31.png,4,"[0.1, 3, 3, 3]"
+32.png,4,"[0.12, 1, 1, 1]"
+33.png,1,"[0.12, 1, 1, 3]"
+34.png,1,"[0.12, 1, 3, 1]"
+35.png,1,"[0.12, 1, 3, 3]"
+36.png,1,"[0.12, 3, 1, 1]"
+37.png,3,"[0.12, 3, 1, 3]"
+38.png,2,"[0.12, 3, 3, 1]"
+39.png,2,"[0.12, 3, 3, 3]"
+40.png,4,"[0.14, 1, 1, 1]"
+41.png,2,"[0.14, 1, 1, 3]"
+42.png,4,"[0.14, 1, 3, 1]"
+43.png,1,"[0.14, 1, 3, 3]"
+44.png,2,"[0.14, 3, 1, 1]"
+45.png,4,"[0.14, 3, 1, 3]"
+46.png,1,"[0.14, 3, 3, 1]"
+47.png,4,"[0.14, 3, 3, 3]"
+48.png,4,"[0.1, 1, 1, 1]"
+49.png,3,"[0.1, 1, 1, 3]"
+50.png,1,"[0.1, 1, 3, 1]"
+51.png,2,"[0.1, 1, 3, 3]"
+52.png,4,"[0.1, 3, 1, 1]"
+53.png,1,"[0.1, 3, 1, 3]"
+54.png,3,"[0.1, 3, 3, 1]"
+55.png,3,"[0.1, 3, 3, 3]"
+56.png,4,"[0.12, 1, 1, 1]"
+57.png,4,"[0.12, 1, 1, 3]"
+58.png,4,"[0.12, 1, 3, 1]"
+59.png,4,"[0.12, 1, 3, 3]"
+60.png,1,"[0.12, 3, 1, 1]"
+61.png,4,"[0.12, 3, 1, 3]"
+62.png,4,"[0.12, 3, 3, 1]"
+63.png,4,"[0.12, 3, 3, 3]"
+64.png,4,"[0.14, 1, 1, 1]"
+65.png,4,"[0.14, 1, 1, 3]"
+66.png,2,"[0.14, 1, 3, 1]"
+67.png,3,"[0.14, 1, 3, 3]"
+68.png,4,"[0.14, 3, 1, 1]"
+69.png,3,"[0.14, 3, 1, 3]"
+70.png,1,"[0.14, 3, 3, 1]"
+71.png,3,"[0.14, 3, 3, 3]"
+72.png,4,"[0.1, 1, 1, 1]"
+73.png,3,"[0.1, 1, 1, 3]"
+74.png,2,"[0.1, 1, 3, 1]"
+75.png,1,"[0.1, 1, 3, 3]"
+76.png,2,"[0.1, 3, 1, 1]"
+77.png,3,"[0.1, 3, 1, 3]"
+78.png,1,"[0.1, 3, 3, 1]"
+79.png,4,"[0.1, 3, 3, 3]"
+80.png,4,"[0.12, 1, 1, 1]"
+81.png,1,"[0.12, 1, 1, 3]"
+82.png,2,"[0.12, 1, 3, 1]"
+83.png,1,"[0.12, 1, 3, 3]"
+84.png,4,"[0.12, 3, 1, 1]"
+85.png,4,"[0.12, 3, 1, 3]"
+86.png,2,"[0.12, 3, 3, 1]"
+87.png,4,"[0.12, 3, 3, 3]"
+88.png,2,"[0.14, 1, 1, 1]"
+89.png,2,"[0.14, 1, 1, 3]"
+90.png,2,"[0.14, 1, 3, 1]"
+91.png,4,"[0.14, 1, 3, 3]"
+92.png,1,"[0.14, 3, 1, 1]"
+93.png,1,"[0.14, 3, 1, 3]"
+94.png,1,"[0.14, 3, 3, 1]"
+95.png,3,"[0.14, 3, 3, 3]"
+96.png,2,"[0.1, 1, 1, 1]"
+97.png,4,"[0.1, 1, 1, 3]"
+98.png,3,"[0.1, 1, 3, 1]"
+99.png,4,"[0.1, 1, 3, 3]"
+100.png,2,"[0.1, 3, 1, 1]"
+101.png,4,"[0.1, 3, 1, 3]"
+102.png,3,"[0.1, 3, 3, 1]"
+103.png,2,"[0.1, 3, 3, 3]"
+104.png,1,"[0.12, 1, 1, 1]"
+105.png,4,"[0.12, 1, 1, 3]"
+106.png,2,"[0.12, 1, 3, 1]"
+107.png,3,"[0.12, 1, 3, 3]"
+108.png,3,"[0.12, 3, 1, 1]"
+109.png,4,"[0.12, 3, 1, 3]"
+110.png,4,"[0.12, 3, 3, 1]"
+111.png,3,"[0.12, 3, 3, 3]"
+112.png,2,"[0.14, 1, 1, 1]"
+113.png,3,"[0.14, 1, 1, 3]"
+114.png,2,"[0.14, 1, 3, 1]"
+115.png,3,"[0.14, 1, 3, 3]"
+116.png,3,"[0.14, 3, 1, 1]"
+117.png,3,"[0.14, 3, 1, 3]"
+118.png,2,"[0.14, 3, 3, 1]"
+119.png,3,"[0.14, 3, 3, 3]"
+120.png,1,"[0.1, 1, 1, 1]"
+121.png,1,"[0.1, 1, 1, 3]"
+122.png,2,"[0.1, 1, 3, 1]"
+123.png,2,"[0.1, 1, 3, 3]"
+124.png,2,"[0.1, 3, 1, 1]"
+125.png,1,"[0.1, 3, 1, 3]"
+126.png,1,"[0.1, 3, 3, 1]"
+127.png,3,"[0.1, 3, 3, 3]"
+128.png,1,"[0.12, 1, 1, 1]"
+129.png,2,"[0.12, 1, 1, 3]"
+130.png,2,"[0.12, 1, 3, 1]"
+131.png,4,"[0.12, 1, 3, 3]"
+132.png,2,"[0.12, 3, 1, 1]"
+133.png,4,"[0.12, 3, 1, 3]"
+134.png,1,"[0.12, 3, 3, 1]"
+135.png,4,"[0.12, 3, 3, 3]"
+136.png,3,"[0.14, 1, 1, 1]"
+137.png,4,"[0.14, 1, 1, 3]"
+138.png,4,"[0.14, 1, 3, 1]"
+139.png,1,"[0.14, 1, 3, 3]"
+140.png,4,"[0.14, 3, 1, 1]"
+141.png,3,"[0.14, 3, 1, 3]"
+142.png,3,"[0.14, 3, 3, 1]"
+143.png,2,"[0.14, 3, 3, 3]"
+144.png,2,"[0.1, 1, 1, 1]"
+145.png,3,"[0.1, 1, 1, 3]"
+146.png,4,"[0.1, 1, 3, 1]"
+147.png,4,"[0.1, 1, 3, 3]"
+148.png,2,"[0.1, 3, 1, 1]"
+149.png,2,"[0.1, 3, 1, 3]"
+150.png,4,"[0.1, 3, 3, 1]"
+151.png,3,"[0.1, 3, 3, 3]"
+152.png,2,"[0.12, 1, 1, 1]"
+153.png,2,"[0.12, 1, 1, 3]"
+154.png,1,"[0.12, 1, 3, 1]"
+155.png,1,"[0.12, 1, 3, 3]"
+156.png,3,"[0.12, 3, 1, 1]"
+157.png,1,"[0.12, 3, 1, 3]"
+158.png,1,"[0.12, 3, 3, 1]"
+159.png,4,"[0.12, 3, 3, 3]"
+160.png,4,"[0.14, 1, 1, 1]"
+161.png,3,"[0.14, 1, 1, 3]"
+162.png,1,"[0.14, 1, 3, 1]"
+163.png,4,"[0.14, 1, 3, 3]"
+164.png,1,"[0.14, 3, 1, 1]"
+165.png,3,"[0.14, 3, 1, 3]"
+166.png,3,"[0.14, 3, 3, 1]"
+167.png,3,"[0.14, 3, 3, 3]"
diff --git a/2D_DoYouSeeMe/visual_figure_ground/1.png b/2D_DoYouSeeMe/visual_figure_ground/1.png
new file mode 100644
index 0000000000000000000000000000000000000000..5802ff1f92280eb066d3a2dbe2f20eb507abcad6
--- /dev/null
+++ b/2D_DoYouSeeMe/visual_figure_ground/1.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d78092800ffc4463152df473910f6d402f544dfdf5500aeceb1cdce0e12cf7a5
+size 33442
diff --git a/2D_DoYouSeeMe/visual_figure_ground/50.png b/2D_DoYouSeeMe/visual_figure_ground/50.png
new file mode 100644
index 0000000000000000000000000000000000000000..b482c1526a5aabb168f0526a1414e64d099c77d9
--- /dev/null
+++ b/2D_DoYouSeeMe/visual_figure_ground/50.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d1754d666a425d757a2d65182e8d1bd5255e1bd4498c1d0ca38a2395fe002fb4
+size 90781
diff --git a/2D_DoYouSeeMe/visual_figure_ground/89.png b/2D_DoYouSeeMe/visual_figure_ground/89.png
new file mode 100644
index 0000000000000000000000000000000000000000..74a88ca86b4b798493fea083b0c174e5a3037307
--- /dev/null
+++ b/2D_DoYouSeeMe/visual_figure_ground/89.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:9996dd94dc21b7b3f5cd828447c8ec4322aa832c72da58c75d4e8769f0fd2f97
+size 109427
diff --git a/2D_DoYouSeeMe/visual_figure_ground/dataset_info.csv b/2D_DoYouSeeMe/visual_figure_ground/dataset_info.csv
new file mode 100644
index 0000000000000000000000000000000000000000..88163fdff37dded3d2cf11d437fd428e73338178
--- /dev/null
+++ b/2D_DoYouSeeMe/visual_figure_ground/dataset_info.csv
@@ -0,0 +1,91 @@
+filename,answer,background_density,sweep
+0.svg,4,0.1,"(2, 0.1)"
+1.svg,1,0.1,"(2, 0.1)"
+2.svg,3,0.1,"(2, 0.1)"
+3.svg,3,0.1,"(2, 0.1)"
+4.svg,3,0.1,"(2, 0.1)"
+5.svg,1,0.1,"(2, 0.1)"
+6.svg,4,0.1,"(2, 0.1)"
+7.svg,3,0.1,"(2, 0.1)"
+8.svg,3,0.1,"(2, 0.1)"
+9.svg,3,0.1,"(2, 0.1)"
+10.svg,1,0.3,"(2, 0.3)"
+11.svg,1,0.3,"(2, 0.3)"
+12.svg,4,0.3,"(2, 0.3)"
+13.svg,1,0.3,"(2, 0.3)"
+14.svg,3,0.3,"(2, 0.3)"
+15.svg,3,0.3,"(2, 0.3)"
+16.svg,1,0.3,"(2, 0.3)"
+17.svg,3,0.3,"(2, 0.3)"
+18.svg,2,0.3,"(2, 0.3)"
+19.svg,3,0.3,"(2, 0.3)"
+20.svg,3,0.5,"(2, 0.5)"
+21.svg,2,0.5,"(2, 0.5)"
+22.svg,1,0.5,"(2, 0.5)"
+23.svg,3,0.5,"(2, 0.5)"
+24.svg,2,0.5,"(2, 0.5)"
+25.svg,4,0.5,"(2, 0.5)"
+26.svg,3,0.5,"(2, 0.5)"
+27.svg,3,0.5,"(2, 0.5)"
+28.svg,1,0.5,"(2, 0.5)"
+29.svg,2,0.5,"(2, 0.5)"
+30.svg,1,0.1,"(6, 0.1)"
+31.svg,3,0.1,"(6, 0.1)"
+32.svg,3,0.1,"(6, 0.1)"
+33.svg,2,0.1,"(6, 0.1)"
+34.svg,3,0.1,"(6, 0.1)"
+35.svg,1,0.1,"(6, 0.1)"
+36.svg,1,0.1,"(6, 0.1)"
+37.svg,2,0.1,"(6, 0.1)"
+38.svg,3,0.1,"(6, 0.1)"
+39.svg,3,0.1,"(6, 0.1)"
+40.svg,3,0.3,"(6, 0.3)"
+41.svg,3,0.3,"(6, 0.3)"
+42.svg,1,0.3,"(6, 0.3)"
+43.svg,4,0.3,"(6, 0.3)"
+44.svg,1,0.3,"(6, 0.3)"
+45.svg,2,0.3,"(6, 0.3)"
+46.svg,3,0.3,"(6, 0.3)"
+47.svg,3,0.3,"(6, 0.3)"
+48.svg,4,0.3,"(6, 0.3)"
+49.svg,1,0.3,"(6, 0.3)"
+50.svg,4,0.5,"(6, 0.5)"
+51.svg,4,0.5,"(6, 0.5)"
+52.svg,3,0.5,"(6, 0.5)"
+53.svg,2,0.5,"(6, 0.5)"
+54.svg,3,0.5,"(6, 0.5)"
+55.svg,4,0.5,"(6, 0.5)"
+56.svg,4,0.5,"(6, 0.5)"
+57.svg,1,0.5,"(6, 0.5)"
+58.svg,1,0.5,"(6, 0.5)"
+59.svg,3,0.5,"(6, 0.5)"
+60.svg,4,0.1,"(10, 0.1)"
+61.svg,1,0.1,"(10, 0.1)"
+62.svg,1,0.1,"(10, 0.1)"
+63.svg,3,0.1,"(10, 0.1)"
+64.svg,4,0.1,"(10, 0.1)"
+65.svg,1,0.1,"(10, 0.1)"
+66.svg,4,0.1,"(10, 0.1)"
+67.svg,3,0.1,"(10, 0.1)"
+68.svg,3,0.1,"(10, 0.1)"
+69.svg,1,0.1,"(10, 0.1)"
+70.svg,4,0.3,"(10, 0.3)"
+71.svg,4,0.3,"(10, 0.3)"
+72.svg,2,0.3,"(10, 0.3)"
+73.svg,2,0.3,"(10, 0.3)"
+74.svg,3,0.3,"(10, 0.3)"
+75.svg,3,0.3,"(10, 0.3)"
+76.svg,2,0.3,"(10, 0.3)"
+77.svg,1,0.3,"(10, 0.3)"
+78.svg,2,0.3,"(10, 0.3)"
+79.svg,2,0.3,"(10, 0.3)"
+80.svg,2,0.5,"(10, 0.5)"
+81.svg,4,0.5,"(10, 0.5)"
+82.svg,4,0.5,"(10, 0.5)"
+83.svg,3,0.5,"(10, 0.5)"
+84.svg,2,0.5,"(10, 0.5)"
+85.svg,3,0.5,"(10, 0.5)"
+86.svg,2,0.5,"(10, 0.5)"
+87.svg,4,0.5,"(10, 0.5)"
+88.svg,1,0.5,"(10, 0.5)"
+89.svg,4,0.5,"(10, 0.5)"
diff --git a/2D_DoYouSeeMe/visual_form_constancy/1.png b/2D_DoYouSeeMe/visual_form_constancy/1.png
new file mode 100644
index 0000000000000000000000000000000000000000..66da3f9cb9c11433aee37483cb0a4cee8aa1d5e7
--- /dev/null
+++ b/2D_DoYouSeeMe/visual_form_constancy/1.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ae5ba8f3fd8dcfe22f721e89f61dd8359aab36505c0e67a742b2c9674a679d5a
+size 44659
diff --git a/2D_DoYouSeeMe/visual_form_constancy/100.png b/2D_DoYouSeeMe/visual_form_constancy/100.png
new file mode 100644
index 0000000000000000000000000000000000000000..0afd7d05aa8b8ac35273d8cdbe406607f4e6b80b
--- /dev/null
+++ b/2D_DoYouSeeMe/visual_form_constancy/100.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:59e3104c4c5dbd83fc708b11d594d54ed4784152ac8ad1f8b80bc1e565467fff
+size 21579
diff --git a/2D_DoYouSeeMe/visual_form_constancy/50.png b/2D_DoYouSeeMe/visual_form_constancy/50.png
new file mode 100644
index 0000000000000000000000000000000000000000..18f0a5b2c4c488bd377e60a94e5c4ec830e78919
--- /dev/null
+++ b/2D_DoYouSeeMe/visual_form_constancy/50.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:6d1808f7837b711275b660f9d09be13d96a34a24f3e2eca3f25944f9d9840e25
+size 45675
diff --git a/2D_DoYouSeeMe/visual_form_constancy/dataset_info.csv b/2D_DoYouSeeMe/visual_form_constancy/dataset_info.csv
new file mode 100644
index 0000000000000000000000000000000000000000..6588d44f2e871a82050209cf0bae3b0d6ffec5c3
--- /dev/null
+++ b/2D_DoYouSeeMe/visual_form_constancy/dataset_info.csv
@@ -0,0 +1,271 @@
+filename,answer,sweep
+0.svg,3,"(5, 0.8, 0.8, 0)"
+1.svg,4,"(5, 0.8, 0.8, 0)"
+2.svg,1,"(5, 0.8, 0.8, 0)"
+3.svg,4,"(5, 0.8, 0.8, 0)"
+4.svg,2,"(5, 0.8, 0.8, 0)"
+5.svg,1,"(5, 0.8, 0.8, 1)"
+6.svg,4,"(5, 0.8, 0.8, 1)"
+7.svg,1,"(5, 0.8, 0.8, 1)"
+8.svg,2,"(5, 0.8, 0.8, 1)"
+9.svg,2,"(5, 0.8, 0.8, 1)"
+10.svg,4,"(5, 0.8, 1.1, 0)"
+11.svg,4,"(5, 0.8, 1.1, 0)"
+12.svg,1,"(5, 0.8, 1.1, 0)"
+13.svg,2,"(5, 0.8, 1.1, 0)"
+14.svg,2,"(5, 0.8, 1.1, 0)"
+15.svg,3,"(5, 0.8, 1.1, 1)"
+16.svg,1,"(5, 0.8, 1.1, 1)"
+17.svg,2,"(5, 0.8, 1.1, 1)"
+18.svg,4,"(5, 0.8, 1.1, 1)"
+19.svg,3,"(5, 0.8, 1.1, 1)"
+20.svg,4,"(5, 0.8, 1.4, 0)"
+21.svg,4,"(5, 0.8, 1.4, 0)"
+22.svg,4,"(5, 0.8, 1.4, 0)"
+23.svg,3,"(5, 0.8, 1.4, 0)"
+24.svg,1,"(5, 0.8, 1.4, 0)"
+25.svg,2,"(5, 0.8, 1.4, 1)"
+26.svg,1,"(5, 0.8, 1.4, 1)"
+27.svg,2,"(5, 0.8, 1.4, 1)"
+28.svg,2,"(5, 0.8, 1.4, 1)"
+29.svg,1,"(5, 0.8, 1.4, 1)"
+30.svg,4,"(5, 1.1, 0.8, 0)"
+31.svg,3,"(5, 1.1, 0.8, 0)"
+32.svg,4,"(5, 1.1, 0.8, 0)"
+33.svg,3,"(5, 1.1, 0.8, 0)"
+34.svg,1,"(5, 1.1, 0.8, 0)"
+35.svg,4,"(5, 1.1, 0.8, 1)"
+36.svg,4,"(5, 1.1, 0.8, 1)"
+37.svg,2,"(5, 1.1, 0.8, 1)"
+38.svg,3,"(5, 1.1, 0.8, 1)"
+39.svg,1,"(5, 1.1, 0.8, 1)"
+40.svg,1,"(5, 1.1, 1.1, 0)"
+41.svg,1,"(5, 1.1, 1.1, 0)"
+42.svg,3,"(5, 1.1, 1.1, 0)"
+43.svg,3,"(5, 1.1, 1.1, 0)"
+44.svg,1,"(5, 1.1, 1.1, 0)"
+45.svg,2,"(5, 1.1, 1.1, 1)"
+46.svg,2,"(5, 1.1, 1.1, 1)"
+47.svg,4,"(5, 1.1, 1.1, 1)"
+48.svg,3,"(5, 1.1, 1.1, 1)"
+49.svg,3,"(5, 1.1, 1.1, 1)"
+50.svg,4,"(5, 1.1, 1.4, 0)"
+51.svg,2,"(5, 1.1, 1.4, 0)"
+52.svg,2,"(5, 1.1, 1.4, 0)"
+53.svg,4,"(5, 1.1, 1.4, 0)"
+54.svg,2,"(5, 1.1, 1.4, 0)"
+55.svg,3,"(5, 1.1, 1.4, 1)"
+56.svg,2,"(5, 1.1, 1.4, 1)"
+57.svg,4,"(5, 1.1, 1.4, 1)"
+58.svg,4,"(5, 1.1, 1.4, 1)"
+59.svg,2,"(5, 1.1, 1.4, 1)"
+60.svg,3,"(5, 1.4, 0.8, 0)"
+61.svg,3,"(5, 1.4, 0.8, 0)"
+62.svg,2,"(5, 1.4, 0.8, 0)"
+63.svg,1,"(5, 1.4, 0.8, 0)"
+64.svg,3,"(5, 1.4, 0.8, 0)"
+65.svg,1,"(5, 1.4, 0.8, 1)"
+66.svg,4,"(5, 1.4, 0.8, 1)"
+67.svg,4,"(5, 1.4, 0.8, 1)"
+68.svg,3,"(5, 1.4, 0.8, 1)"
+69.svg,2,"(5, 1.4, 0.8, 1)"
+70.svg,4,"(5, 1.4, 1.1, 0)"
+71.svg,2,"(5, 1.4, 1.1, 0)"
+72.svg,4,"(5, 1.4, 1.1, 0)"
+73.svg,3,"(5, 1.4, 1.1, 0)"
+74.svg,3,"(5, 1.4, 1.1, 0)"
+75.svg,3,"(5, 1.4, 1.1, 1)"
+76.svg,4,"(5, 1.4, 1.1, 1)"
+77.svg,1,"(5, 1.4, 1.1, 1)"
+78.svg,1,"(5, 1.4, 1.1, 1)"
+79.svg,3,"(5, 1.4, 1.1, 1)"
+80.svg,2,"(5, 1.4, 1.4, 0)"
+81.svg,4,"(5, 1.4, 1.4, 0)"
+82.svg,1,"(5, 1.4, 1.4, 0)"
+83.svg,2,"(5, 1.4, 1.4, 0)"
+84.svg,3,"(5, 1.4, 1.4, 0)"
+85.svg,1,"(5, 1.4, 1.4, 1)"
+86.svg,4,"(5, 1.4, 1.4, 1)"
+87.svg,2,"(5, 1.4, 1.4, 1)"
+88.svg,4,"(5, 1.4, 1.4, 1)"
+89.svg,2,"(5, 1.4, 1.4, 1)"
+90.svg,2,"(25, 0.8, 0.8, 0)"
+91.svg,1,"(25, 0.8, 0.8, 0)"
+92.svg,4,"(25, 0.8, 0.8, 0)"
+93.svg,4,"(25, 0.8, 0.8, 0)"
+94.svg,2,"(25, 0.8, 0.8, 0)"
+95.svg,4,"(25, 0.8, 0.8, 1)"
+96.svg,4,"(25, 0.8, 0.8, 1)"
+97.svg,3,"(25, 0.8, 0.8, 1)"
+98.svg,4,"(25, 0.8, 0.8, 1)"
+99.svg,3,"(25, 0.8, 0.8, 1)"
+100.svg,1,"(25, 0.8, 1.1, 0)"
+101.svg,4,"(25, 0.8, 1.1, 0)"
+102.svg,3,"(25, 0.8, 1.1, 0)"
+103.svg,3,"(25, 0.8, 1.1, 0)"
+104.svg,3,"(25, 0.8, 1.1, 0)"
+105.svg,2,"(25, 0.8, 1.1, 1)"
+106.svg,3,"(25, 0.8, 1.1, 1)"
+107.svg,2,"(25, 0.8, 1.1, 1)"
+108.svg,1,"(25, 0.8, 1.1, 1)"
+109.svg,1,"(25, 0.8, 1.1, 1)"
+110.svg,4,"(25, 0.8, 1.4, 0)"
+111.svg,1,"(25, 0.8, 1.4, 0)"
+112.svg,3,"(25, 0.8, 1.4, 0)"
+113.svg,2,"(25, 0.8, 1.4, 0)"
+114.svg,3,"(25, 0.8, 1.4, 0)"
+115.svg,1,"(25, 0.8, 1.4, 1)"
+116.svg,3,"(25, 0.8, 1.4, 1)"
+117.svg,4,"(25, 0.8, 1.4, 1)"
+118.svg,1,"(25, 0.8, 1.4, 1)"
+119.svg,3,"(25, 0.8, 1.4, 1)"
+120.svg,4,"(25, 1.1, 0.8, 0)"
+121.svg,4,"(25, 1.1, 0.8, 0)"
+122.svg,3,"(25, 1.1, 0.8, 0)"
+123.svg,2,"(25, 1.1, 0.8, 0)"
+124.svg,4,"(25, 1.1, 0.8, 0)"
+125.svg,1,"(25, 1.1, 0.8, 1)"
+126.svg,2,"(25, 1.1, 0.8, 1)"
+127.svg,2,"(25, 1.1, 0.8, 1)"
+128.svg,2,"(25, 1.1, 0.8, 1)"
+129.svg,2,"(25, 1.1, 0.8, 1)"
+130.svg,4,"(25, 1.1, 1.1, 0)"
+131.svg,4,"(25, 1.1, 1.1, 0)"
+132.svg,3,"(25, 1.1, 1.1, 0)"
+133.svg,2,"(25, 1.1, 1.1, 0)"
+134.svg,4,"(25, 1.1, 1.1, 0)"
+135.svg,3,"(25, 1.1, 1.1, 1)"
+136.svg,4,"(25, 1.1, 1.1, 1)"
+137.svg,4,"(25, 1.1, 1.1, 1)"
+138.svg,2,"(25, 1.1, 1.1, 1)"
+139.svg,3,"(25, 1.1, 1.1, 1)"
+140.svg,3,"(25, 1.1, 1.4, 0)"
+141.svg,2,"(25, 1.1, 1.4, 0)"
+142.svg,2,"(25, 1.1, 1.4, 0)"
+143.svg,2,"(25, 1.1, 1.4, 0)"
+144.svg,2,"(25, 1.1, 1.4, 0)"
+145.svg,3,"(25, 1.1, 1.4, 1)"
+146.svg,3,"(25, 1.1, 1.4, 1)"
+147.svg,2,"(25, 1.1, 1.4, 1)"
+148.svg,2,"(25, 1.1, 1.4, 1)"
+149.svg,2,"(25, 1.1, 1.4, 1)"
+150.svg,2,"(25, 1.4, 0.8, 0)"
+151.svg,1,"(25, 1.4, 0.8, 0)"
+152.svg,4,"(25, 1.4, 0.8, 0)"
+153.svg,1,"(25, 1.4, 0.8, 0)"
+154.svg,3,"(25, 1.4, 0.8, 0)"
+155.svg,2,"(25, 1.4, 0.8, 1)"
+156.svg,4,"(25, 1.4, 0.8, 1)"
+157.svg,2,"(25, 1.4, 0.8, 1)"
+158.svg,2,"(25, 1.4, 0.8, 1)"
+159.svg,4,"(25, 1.4, 0.8, 1)"
+160.svg,1,"(25, 1.4, 1.1, 0)"
+161.svg,2,"(25, 1.4, 1.1, 0)"
+162.svg,1,"(25, 1.4, 1.1, 0)"
+163.svg,2,"(25, 1.4, 1.1, 0)"
+164.svg,4,"(25, 1.4, 1.1, 0)"
+165.svg,1,"(25, 1.4, 1.1, 1)"
+166.svg,1,"(25, 1.4, 1.1, 1)"
+167.svg,1,"(25, 1.4, 1.1, 1)"
+168.svg,1,"(25, 1.4, 1.1, 1)"
+169.svg,4,"(25, 1.4, 1.1, 1)"
+170.svg,2,"(25, 1.4, 1.4, 0)"
+171.svg,3,"(25, 1.4, 1.4, 0)"
+172.svg,4,"(25, 1.4, 1.4, 0)"
+173.svg,1,"(25, 1.4, 1.4, 0)"
+174.svg,3,"(25, 1.4, 1.4, 0)"
+175.svg,4,"(25, 1.4, 1.4, 1)"
+176.svg,2,"(25, 1.4, 1.4, 1)"
+177.svg,3,"(25, 1.4, 1.4, 1)"
+178.svg,2,"(25, 1.4, 1.4, 1)"
+179.svg,2,"(25, 1.4, 1.4, 1)"
+180.svg,1,"(50, 0.8, 0.8, 0)"
+181.svg,1,"(50, 0.8, 0.8, 0)"
+182.svg,3,"(50, 0.8, 0.8, 0)"
+183.svg,3,"(50, 0.8, 0.8, 0)"
+184.svg,2,"(50, 0.8, 0.8, 0)"
+185.svg,2,"(50, 0.8, 0.8, 1)"
+186.svg,2,"(50, 0.8, 0.8, 1)"
+187.svg,3,"(50, 0.8, 0.8, 1)"
+188.svg,1,"(50, 0.8, 0.8, 1)"
+189.svg,1,"(50, 0.8, 0.8, 1)"
+190.svg,1,"(50, 0.8, 1.1, 0)"
+191.svg,2,"(50, 0.8, 1.1, 0)"
+192.svg,3,"(50, 0.8, 1.1, 0)"
+193.svg,3,"(50, 0.8, 1.1, 0)"
+194.svg,4,"(50, 0.8, 1.1, 0)"
+195.svg,1,"(50, 0.8, 1.1, 1)"
+196.svg,2,"(50, 0.8, 1.1, 1)"
+197.svg,3,"(50, 0.8, 1.1, 1)"
+198.svg,2,"(50, 0.8, 1.1, 1)"
+199.svg,3,"(50, 0.8, 1.1, 1)"
+200.svg,3,"(50, 0.8, 1.4, 0)"
+201.svg,1,"(50, 0.8, 1.4, 0)"
+202.svg,1,"(50, 0.8, 1.4, 0)"
+203.svg,1,"(50, 0.8, 1.4, 0)"
+204.svg,3,"(50, 0.8, 1.4, 0)"
+205.svg,1,"(50, 0.8, 1.4, 1)"
+206.svg,3,"(50, 0.8, 1.4, 1)"
+207.svg,1,"(50, 0.8, 1.4, 1)"
+208.svg,4,"(50, 0.8, 1.4, 1)"
+209.svg,4,"(50, 0.8, 1.4, 1)"
+210.svg,3,"(50, 1.1, 0.8, 0)"
+211.svg,3,"(50, 1.1, 0.8, 0)"
+212.svg,1,"(50, 1.1, 0.8, 0)"
+213.svg,1,"(50, 1.1, 0.8, 0)"
+214.svg,2,"(50, 1.1, 0.8, 0)"
+215.svg,3,"(50, 1.1, 0.8, 1)"
+216.svg,2,"(50, 1.1, 0.8, 1)"
+217.svg,3,"(50, 1.1, 0.8, 1)"
+218.svg,2,"(50, 1.1, 0.8, 1)"
+219.svg,1,"(50, 1.1, 0.8, 1)"
+220.svg,3,"(50, 1.1, 1.1, 0)"
+221.svg,4,"(50, 1.1, 1.1, 0)"
+222.svg,3,"(50, 1.1, 1.1, 0)"
+223.svg,2,"(50, 1.1, 1.1, 0)"
+224.svg,4,"(50, 1.1, 1.1, 0)"
+225.svg,3,"(50, 1.1, 1.1, 1)"
+226.svg,3,"(50, 1.1, 1.1, 1)"
+227.svg,4,"(50, 1.1, 1.1, 1)"
+228.svg,1,"(50, 1.1, 1.1, 1)"
+229.svg,4,"(50, 1.1, 1.1, 1)"
+230.svg,2,"(50, 1.1, 1.4, 0)"
+231.svg,4,"(50, 1.1, 1.4, 0)"
+232.svg,2,"(50, 1.1, 1.4, 0)"
+233.svg,3,"(50, 1.1, 1.4, 0)"
+234.svg,4,"(50, 1.1, 1.4, 0)"
+235.svg,2,"(50, 1.1, 1.4, 1)"
+236.svg,2,"(50, 1.1, 1.4, 1)"
+237.svg,2,"(50, 1.1, 1.4, 1)"
+238.svg,2,"(50, 1.1, 1.4, 1)"
+239.svg,2,"(50, 1.1, 1.4, 1)"
+240.svg,2,"(50, 1.4, 0.8, 0)"
+241.svg,2,"(50, 1.4, 0.8, 0)"
+242.svg,4,"(50, 1.4, 0.8, 0)"
+243.svg,3,"(50, 1.4, 0.8, 0)"
+244.svg,2,"(50, 1.4, 0.8, 0)"
+245.svg,2,"(50, 1.4, 0.8, 1)"
+246.svg,4,"(50, 1.4, 0.8, 1)"
+247.svg,1,"(50, 1.4, 0.8, 1)"
+248.svg,4,"(50, 1.4, 0.8, 1)"
+249.svg,4,"(50, 1.4, 0.8, 1)"
+250.svg,1,"(50, 1.4, 1.1, 0)"
+251.svg,2,"(50, 1.4, 1.1, 0)"
+252.svg,1,"(50, 1.4, 1.1, 0)"
+253.svg,3,"(50, 1.4, 1.1, 0)"
+254.svg,2,"(50, 1.4, 1.1, 0)"
+255.svg,4,"(50, 1.4, 1.1, 1)"
+256.svg,3,"(50, 1.4, 1.1, 1)"
+257.svg,3,"(50, 1.4, 1.1, 1)"
+258.svg,2,"(50, 1.4, 1.1, 1)"
+259.svg,3,"(50, 1.4, 1.1, 1)"
+260.svg,1,"(50, 1.4, 1.4, 0)"
+261.svg,4,"(50, 1.4, 1.4, 0)"
+262.svg,2,"(50, 1.4, 1.4, 0)"
+263.svg,1,"(50, 1.4, 1.4, 0)"
+264.svg,1,"(50, 1.4, 1.4, 0)"
+265.svg,2,"(50, 1.4, 1.4, 1)"
+266.svg,4,"(50, 1.4, 1.4, 1)"
+267.svg,2,"(50, 1.4, 1.4, 1)"
+268.svg,1,"(50, 1.4, 1.4, 1)"
+269.svg,1,"(50, 1.4, 1.4, 1)"
diff --git a/2D_DoYouSeeMe/visual_spatial/1.png b/2D_DoYouSeeMe/visual_spatial/1.png
new file mode 100644
index 0000000000000000000000000000000000000000..8f9e4a7a56f1de2a321620f37d4b2058b7822d05
--- /dev/null
+++ b/2D_DoYouSeeMe/visual_spatial/1.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b5d75197d6f9d2f74d4e6e091e7c8d6a7625457256d46c8c9b95d6efc3c47dfd
+size 4832
diff --git a/2D_DoYouSeeMe/visual_spatial/100.png b/2D_DoYouSeeMe/visual_spatial/100.png
new file mode 100644
index 0000000000000000000000000000000000000000..8aacd57af81bc598b484ca0d464978f5da020f53
--- /dev/null
+++ b/2D_DoYouSeeMe/visual_spatial/100.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:b8c1d33cffb8d2e93c40db77edc4c722dc55f497579b1d5b4cbbd1a0c85d9328
+size 20537
diff --git a/2D_DoYouSeeMe/visual_spatial/50.png b/2D_DoYouSeeMe/visual_spatial/50.png
new file mode 100644
index 0000000000000000000000000000000000000000..5e980274c7af1219dbb0bdb097e1fa6890e0f74f
--- /dev/null
+++ b/2D_DoYouSeeMe/visual_spatial/50.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:70de69d7f2cd17a69accdfb2a7e20e38e1c0591bea85de42ba6ce34d6bf9bb58
+size 21620
diff --git a/2D_DoYouSeeMe/visual_spatial/dataset_dump.csv b/2D_DoYouSeeMe/visual_spatial/dataset_dump.csv
new file mode 100644
index 0000000000000000000000000000000000000000..74f7fa9d8d3c1c1f00e991e452efbd3d157161ac
--- /dev/null
+++ b/2D_DoYouSeeMe/visual_spatial/dataset_dump.csv
@@ -0,0 +1,271 @@
+name,spatial_dict,sweep
+0.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('square', 'black'), (1, 0): ('square', 'black'), (1, 1): ('square', 'white'), (1, 2): ('triangle', 'black'), (2, 0): ('square', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('triangle', 'black')}]","(3, 3, 1)"
+1.svg,"[{(0, 0): ('circle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('square', 'white'), (1, 0): ('square', 'black'), (1, 1): ('square', 'black'), (1, 2): ('square', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'white')}]","(3, 3, 1)"
+2.svg,"[{(0, 0): ('triangle', 'black'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('square', 'black')}]","(3, 3, 1)"
+3.svg,"[{(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('square', 'black'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'white')}]","(3, 3, 1)"
+4.svg,"[{(0, 0): ('circle', 'black'), (0, 1): ('square', 'white'), (0, 2): ('triangle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('square', 'white')}]","(3, 3, 1)"
+5.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('circle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'white'), (2, 0): ('square', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('circle', 'black')}]","(3, 3, 1)"
+6.svg,"[{(0, 0): ('circle', 'black'), (0, 1): ('square', 'black'), (0, 2): ('square', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('square', 'white'), (1, 2): ('square', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('square', 'white')}]","(3, 3, 1)"
+7.svg,"[{(0, 0): ('circle', 'black'), (0, 1): ('square', 'black'), (0, 2): ('circle', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('triangle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'white')}]","(3, 3, 1)"
+8.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('square', 'white'), (0, 2): ('square', 'white'), (1, 0): ('square', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('triangle', 'black'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('square', 'white')}]","(3, 3, 1)"
+9.svg,"[{(0, 0): ('square', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('square', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('square', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('circle', 'white')}]","(3, 3, 1)"
+10.svg,"[{(0, 0): ('square', 'black'), (0, 1): ('square', 'black'), (0, 2): ('circle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('triangle', 'white')}, {(0, 0): ('circle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('triangle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('square', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('triangle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('square', 'white')}]","(3, 3, 3)"
+11.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('square', 'black'), (1, 2): ('square', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'white')}, {(0, 0): ('square', 'black'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('square', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('square', 'black')}, {(0, 0): ('circle', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('square', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('square', 'black'), (1, 2): ('triangle', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'white')}]","(3, 3, 3)"
+12.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'white')}, {(0, 0): ('triangle', 'black'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'white'), (2, 0): ('square', 'white'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('triangle', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'black'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('triangle', 'black')}]","(3, 3, 3)"
+13.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'black'), (2, 2): ('triangle', 'black')}, {(0, 0): ('square', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('square', 'black'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('square', 'white'), (2, 0): ('square', 'white'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('circle', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('triangle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'white')}]","(3, 3, 3)"
+14.svg,"[{(0, 0): ('square', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('square', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('square', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('circle', 'black')}, {(0, 0): ('square', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('square', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('square', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('square', 'white')}, {(0, 0): ('square', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('square', 'white'), (1, 0): ('triangle', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'black'), (2, 2): ('square', 'white')}]","(3, 3, 3)"
+15.svg,"[{(0, 0): ('square', 'black'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'black')}, {(0, 0): ('circle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('square', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('square', 'black'), (2, 0): ('square', 'black'), (2, 1): ('square', 'white'), (2, 2): ('circle', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'white'), (1, 0): ('triangle', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('square', 'white'), (2, 2): ('circle', 'black')}]","(3, 3, 3)"
+16.svg,"[{(0, 0): ('circle', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('square', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'black')}, {(0, 0): ('circle', 'white'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'black')}, {(0, 0): ('circle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('triangle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('circle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'black'), (2, 2): ('square', 'white')}]","(3, 3, 3)"
+17.svg,"[{(0, 0): ('square', 'black'), (0, 1): ('square', 'black'), (0, 2): ('circle', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('square', 'white'), (2, 0): ('square', 'white'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'white')}, {(0, 0): ('triangle', 'black'), (0, 1): ('square', 'black'), (0, 2): ('circle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('square', 'black'), (0, 2): ('circle', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('circle', 'black')}]","(3, 3, 3)"
+18.svg,"[{(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('square', 'white'), (1, 0): ('triangle', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('circle', 'black'), (2, 0): ('square', 'white'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('square', 'black')}, {(0, 0): ('circle', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('triangle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('square', 'white')}]","(3, 3, 3)"
+19.svg,"[{(0, 0): ('circle', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('circle', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('square', 'black')}, {(0, 0): ('triangle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('square', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('square', 'white'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('triangle', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('square', 'black'), (1, 2): ('circle', 'white'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('square', 'black')}]","(3, 3, 3)"
+20.svg,"[{(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('triangle', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('square', 'white'), (2, 0): ('square', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('square', 'black'), (0, 2): ('square', 'white'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('square', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('square', 'white'), (2, 2): ('square', 'black')}, {(0, 0): ('triangle', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('triangle', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('circle', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('circle', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('square', 'black'), (0, 2): ('circle', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('square', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('circle', 'white')}]","(3, 3, 5)"
+21.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('square', 'black'), (0, 2): ('square', 'white'), (1, 0): ('square', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('square', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'white')}, {(0, 0): ('circle', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('circle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('circle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('circle', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('circle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('square', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('triangle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('square', 'black'), (1, 2): ('square', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('circle', 'black')}, {(0, 0): ('square', 'white'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('triangle', 'black')}]","(3, 3, 5)"
+22.svg,"[{(0, 0): ('square', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('square', 'black')}, {(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('triangle', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('square', 'black'), (0, 2): ('square', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('square', 'black'), (1, 2): ('triangle', 'white'), (2, 0): ('square', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('circle', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('square', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('circle', 'black'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'black'), (2, 2): ('triangle', 'black')}]","(3, 3, 5)"
+23.svg,"[{(0, 0): ('circle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('triangle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('square', 'black'), (2, 2): ('triangle', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('triangle', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('triangle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('square', 'black'), (1, 0): ('square', 'white'), (1, 1): ('square', 'white'), (1, 2): ('triangle', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'white')}, {(0, 0): ('square', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('circle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('triangle', 'white'), (2, 0): ('square', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('circle', 'white')}, {(0, 0): ('circle', 'black'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'white'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('circle', 'white')}]","(3, 3, 5)"
+24.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('square', 'black'), (0, 2): ('square', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('square', 'black'), (1, 2): ('circle', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('square', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('square', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('circle', 'white')}, {(0, 0): ('square', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('triangle', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('triangle', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('square', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('square', 'black'), (2, 2): ('triangle', 'black')}]","(3, 3, 5)"
+25.svg,"[{(0, 0): ('triangle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('square', 'white'), (1, 2): ('square', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('square', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('triangle', 'black'), (2, 0): ('square', 'white'), (2, 1): ('square', 'black'), (2, 2): ('square', 'black')}, {(0, 0): ('triangle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('square', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('square', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'black'), (2, 0): ('square', 'white'), (2, 1): ('square', 'black'), (2, 2): ('triangle', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('circle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'white'), (2, 0): ('square', 'white'), (2, 1): ('square', 'white'), (2, 2): ('square', 'white')}]","(3, 3, 5)"
+26.svg,"[{(0, 0): ('triangle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('square', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('triangle', 'white')}, {(0, 0): ('circle', 'black'), (0, 1): ('square', 'black'), (0, 2): ('square', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'white'), (2, 0): ('square', 'white'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'black')}, {(0, 0): ('square', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('triangle', 'white')}, {(0, 0): ('square', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('square', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('square', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('circle', 'black')}, {(0, 0): ('circle', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('square', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('square', 'black')}]","(3, 3, 5)"
+27.svg,"[{(0, 0): ('triangle', 'black'), (0, 1): ('square', 'white'), (0, 2): ('triangle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('square', 'white'), (1, 2): ('triangle', 'white'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('square', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('square', 'black'), (0, 2): ('square', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('square', 'black'), (1, 2): ('circle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('square', 'black'), (2, 2): ('triangle', 'black')}, {(0, 0): ('circle', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('square', 'white'), (1, 0): ('triangle', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('circle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('square', 'black')}, {(0, 0): ('circle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('square', 'black'), (2, 2): ('triangle', 'white')}, {(0, 0): ('square', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('triangle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('circle', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('circle', 'black')}]","(3, 3, 5)"
+28.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('triangle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('square', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('square', 'white'), (1, 0): ('triangle', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('triangle', 'black'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'white'), (1, 0): ('triangle', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('square', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('square', 'white')}, {(0, 0): ('circle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'black'), (2, 0): ('square', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('circle', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('circle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'white')}]","(3, 3, 5)"
+29.svg,"[{(0, 0): ('circle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('square', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('circle', 'black')}, {(0, 0): ('triangle', 'black'), (0, 1): ('square', 'white'), (0, 2): ('square', 'white'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('circle', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('square', 'black'), (1, 0): ('square', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('circle', 'white'), (2, 0): ('square', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('circle', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('triangle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('square', 'white'), (1, 2): ('square', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('triangle', 'black')}, {(0, 0): ('triangle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('square', 'black'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('square', 'black')}]","(3, 3, 5)"
+30.svg,"[{(0, 0): ('square', 'black'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('triangle', 'black'), (0, 4): ('square', 'white'), (0, 5): ('circle', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('triangle', 'black'), (1, 3): ('triangle', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('circle', 'white'), (2, 0): ('square', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('square', 'black'), (2, 4): ('circle', 'white'), (2, 5): ('triangle', 'black')}]","(3, 6, 1)"
+31.svg,"[{(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('square', 'white'), (0, 3): ('circle', 'white'), (0, 4): ('triangle', 'black'), (0, 5): ('circle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('square', 'white'), (1, 3): ('square', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('square', 'white'), (2, 0): ('square', 'white'), (2, 1): ('square', 'white'), (2, 2): ('square', 'white'), (2, 3): ('square', 'white'), (2, 4): ('circle', 'black'), (2, 5): ('circle', 'black')}]","(3, 6, 1)"
+32.svg,"[{(0, 0): ('triangle', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('square', 'white'), (0, 3): ('square', 'black'), (0, 4): ('circle', 'black'), (0, 5): ('square', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('square', 'white'), (1, 2): ('square', 'black'), (1, 3): ('square', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('triangle', 'black'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'white'), (2, 3): ('circle', 'black'), (2, 4): ('square', 'white'), (2, 5): ('circle', 'black')}]","(3, 6, 1)"
+33.svg,"[{(0, 0): ('square', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('square', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('circle', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('triangle', 'white'), (1, 5): ('circle', 'white'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('circle', 'white'), (2, 3): ('circle', 'white'), (2, 4): ('square', 'white'), (2, 5): ('circle', 'black')}]","(3, 6, 1)"
+34.svg,"[{(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('triangle', 'white'), (0, 4): ('square', 'black'), (0, 5): ('square', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'black'), (1, 3): ('square', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('circle', 'black'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('triangle', 'black'), (2, 4): ('triangle', 'white'), (2, 5): ('square', 'white')}]","(3, 6, 1)"
+35.svg,"[{(0, 0): ('square', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('triangle', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'black'), (1, 3): ('circle', 'white'), (1, 4): ('triangle', 'black'), (1, 5): ('circle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('square', 'black'), (2, 4): ('square', 'black'), (2, 5): ('triangle', 'black')}]","(3, 6, 1)"
+36.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('square', 'black'), (0, 3): ('circle', 'white'), (0, 4): ('circle', 'white'), (0, 5): ('square', 'black'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('square', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('triangle', 'black'), (1, 5): ('triangle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('square', 'black'), (2, 3): ('triangle', 'white'), (2, 4): ('square', 'white'), (2, 5): ('square', 'black')}]","(3, 6, 1)"
+37.svg,"[{(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('circle', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('square', 'white'), (1, 3): ('triangle', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('triangle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('triangle', 'black'), (2, 4): ('triangle', 'white'), (2, 5): ('triangle', 'white')}]","(3, 6, 1)"
+38.svg,"[{(0, 0): ('triangle', 'white'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('square', 'white'), (0, 5): ('circle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'black'), (1, 3): ('square', 'white'), (1, 4): ('triangle', 'black'), (1, 5): ('square', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('triangle', 'black')}]","(3, 6, 1)"
+39.svg,"[{(0, 0): ('square', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('square', 'black'), (0, 4): ('square', 'white'), (0, 5): ('circle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('circle', 'black'), (1, 5): ('square', 'white'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('square', 'white'), (2, 3): ('triangle', 'white'), (2, 4): ('square', 'black'), (2, 5): ('square', 'black')}]","(3, 6, 1)"
+40.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('square', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('square', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('circle', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'black'), (1, 3): ('square', 'white'), (1, 4): ('square', 'black'), (1, 5): ('circle', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('circle', 'black'), (2, 3): ('circle', 'black'), (2, 4): ('circle', 'white'), (2, 5): ('square', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'black'), (0, 3): ('square', 'black'), (0, 4): ('square', 'black'), (0, 5): ('square', 'white'), (1, 0): ('triangle', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'black'), (1, 3): ('square', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('circle', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('square', 'black'), (2, 3): ('square', 'white'), (2, 4): ('square', 'white'), (2, 5): ('circle', 'black')}, {(0, 0): ('triangle', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'white'), (0, 3): ('square', 'white'), (0, 4): ('triangle', 'white'), (0, 5): ('triangle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('square', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('circle', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('square', 'black'), (2, 3): ('square', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('circle', 'white')}]","(3, 6, 3)"
+41.svg,"[{(0, 0): ('triangle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('square', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('circle', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('triangle', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('square', 'black'), (2, 2): ('triangle', 'white'), (2, 3): ('square', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('triangle', 'black')}, {(0, 0): ('circle', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('square', 'white'), (0, 3): ('triangle', 'white'), (0, 4): ('circle', 'white'), (0, 5): ('circle', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('square', 'black'), (1, 4): ('triangle', 'white'), (1, 5): ('circle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('triangle', 'black'), (2, 3): ('circle', 'black'), (2, 4): ('square', 'white'), (2, 5): ('square', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('square', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('square', 'black'), (1, 3): ('triangle', 'black'), (1, 4): ('triangle', 'white'), (1, 5): ('square', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('square', 'black'), (2, 3): ('square', 'black'), (2, 4): ('circle', 'white'), (2, 5): ('triangle', 'black')}]","(3, 6, 3)"
+42.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'black'), (0, 3): ('triangle', 'white'), (0, 4): ('square', 'white'), (0, 5): ('circle', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('square', 'white'), (1, 3): ('triangle', 'white'), (1, 4): ('triangle', 'black'), (1, 5): ('circle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'black'), (2, 3): ('triangle', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('circle', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('square', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('triangle', 'white'), (0, 4): ('circle', 'white'), (0, 5): ('circle', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'white'), (1, 3): ('square', 'white'), (1, 4): ('triangle', 'white'), (1, 5): ('square', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('square', 'white'), (2, 3): ('circle', 'black'), (2, 4): ('square', 'white'), (2, 5): ('circle', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('circle', 'black'), (0, 5): ('square', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('circle', 'black'), (1, 3): ('square', 'white'), (1, 4): ('square', 'black'), (1, 5): ('square', 'black'), (2, 0): ('square', 'black'), (2, 1): ('square', 'white'), (2, 2): ('circle', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('square', 'white'), (2, 5): ('square', 'black')}]","(3, 6, 3)"
+43.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('square', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('triangle', 'white'), (0, 4): ('square', 'white'), (0, 5): ('circle', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('square', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('triangle', 'white'), (1, 4): ('triangle', 'black'), (1, 5): ('triangle', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('circle', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('circle', 'white'), (2, 5): ('triangle', 'black')}, {(0, 0): ('triangle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('square', 'black'), (0, 5): ('circle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('square', 'white'), (1, 2): ('square', 'black'), (1, 3): ('square', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('triangle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('circle', 'white')}, {(0, 0): ('circle', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('square', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('triangle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('square', 'black'), (1, 2): ('square', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('triangle', 'black'), (1, 5): ('triangle', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('square', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('triangle', 'black')}]","(3, 6, 3)"
+44.svg,"[{(0, 0): ('square', 'black'), (0, 1): ('square', 'black'), (0, 2): ('square', 'black'), (0, 3): ('square', 'black'), (0, 4): ('square', 'black'), (0, 5): ('triangle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('square', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('square', 'black'), (1, 5): ('triangle', 'black'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('square', 'black'), (2, 3): ('square', 'black'), (2, 4): ('triangle', 'white'), (2, 5): ('square', 'black')}, {(0, 0): ('square', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('triangle', 'black'), (0, 3): ('circle', 'white'), (0, 4): ('square', 'black'), (0, 5): ('triangle', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'white'), (1, 3): ('square', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('triangle', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('square', 'black'), (2, 4): ('square', 'black'), (2, 5): ('triangle', 'white')}, {(0, 0): ('square', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('circle', 'white'), (0, 4): ('square', 'black'), (0, 5): ('square', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('circle', 'black'), (1, 5): ('square', 'black'), (2, 0): ('square', 'white'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('circle', 'black'), (2, 4): ('square', 'black'), (2, 5): ('square', 'black')}]","(3, 6, 3)"
+45.svg,"[{(0, 0): ('triangle', 'white'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'black'), (0, 3): ('circle', 'white'), (0, 4): ('square', 'black'), (0, 5): ('circle', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('triangle', 'white'), (1, 5): ('circle', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('square', 'black'), (2, 4): ('square', 'black'), (2, 5): ('square', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('square', 'black'), (0, 3): ('circle', 'white'), (0, 4): ('triangle', 'white'), (0, 5): ('triangle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('triangle', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('square', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('triangle', 'white'), (2, 5): ('square', 'black')}, {(0, 0): ('square', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('square', 'black'), (0, 3): ('triangle', 'white'), (0, 4): ('square', 'white'), (0, 5): ('square', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('square', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('triangle', 'black'), (1, 5): ('square', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('triangle', 'white'), (2, 4): ('circle', 'black'), (2, 5): ('square', 'black')}]","(3, 6, 3)"
+46.svg,"[{(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'black'), (0, 3): ('triangle', 'white'), (0, 4): ('triangle', 'white'), (0, 5): ('square', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('square', 'white'), (1, 2): ('square', 'black'), (1, 3): ('triangle', 'black'), (1, 4): ('triangle', 'white'), (1, 5): ('triangle', 'black'), (2, 0): ('square', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('square', 'black'), (2, 3): ('circle', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('circle', 'white')}, {(0, 0): ('circle', 'black'), (0, 1): ('square', 'white'), (0, 2): ('square', 'black'), (0, 3): ('circle', 'white'), (0, 4): ('circle', 'black'), (0, 5): ('triangle', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('square', 'white'), (1, 3): ('triangle', 'white'), (1, 4): ('square', 'white'), (1, 5): ('square', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('square', 'black'), (2, 3): ('triangle', 'white'), (2, 4): ('triangle', 'white'), (2, 5): ('square', 'white')}, {(0, 0): ('square', 'black'), (0, 1): ('square', 'black'), (0, 2): ('square', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('triangle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('triangle', 'black'), (1, 5): ('circle', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('square', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('triangle', 'white'), (2, 5): ('triangle', 'white')}]","(3, 6, 3)"
+47.svg,"[{(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('square', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('square', 'white'), (0, 5): ('triangle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('triangle', 'white'), (1, 3): ('square', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('triangle', 'black'), (2, 0): ('square', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('triangle', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('square', 'black'), (2, 5): ('circle', 'white')}, {(0, 0): ('triangle', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('circle', 'white'), (0, 3): ('triangle', 'white'), (0, 4): ('square', 'black'), (0, 5): ('square', 'white'), (1, 0): ('square', 'white'), (1, 1): ('square', 'white'), (1, 2): ('square', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('circle', 'black'), (1, 5): ('square', 'black'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('square', 'black'), (2, 3): ('square', 'black'), (2, 4): ('square', 'white'), (2, 5): ('circle', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('circle', 'white'), (0, 4): ('square', 'black'), (0, 5): ('square', 'black'), (1, 0): ('square', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('square', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('triangle', 'black'), (2, 4): ('circle', 'white'), (2, 5): ('triangle', 'white')}]","(3, 6, 3)"
+48.svg,"[{(0, 0): ('square', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('square', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('circle', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'black'), (1, 3): ('square', 'white'), (1, 4): ('triangle', 'black'), (1, 5): ('square', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('square', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('circle', 'black'), (2, 5): ('square', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('square', 'white'), (0, 3): ('square', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('circle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('square', 'black'), (1, 3): ('triangle', 'black'), (1, 4): ('square', 'white'), (1, 5): ('square', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('circle', 'white'), (2, 4): ('triangle', 'white'), (2, 5): ('circle', 'black')}, {(0, 0): ('circle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('square', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('circle', 'black'), (0, 5): ('square', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('square', 'white'), (1, 5): ('circle', 'black'), (2, 0): ('square', 'white'), (2, 1): ('square', 'white'), (2, 2): ('circle', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('circle', 'black'), (2, 5): ('circle', 'white')}]","(3, 6, 3)"
+49.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('square', 'white'), (0, 2): ('triangle', 'white'), (0, 3): ('triangle', 'white'), (0, 4): ('triangle', 'black'), (0, 5): ('triangle', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('square', 'black'), (1, 2): ('triangle', 'black'), (1, 3): ('triangle', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('triangle', 'black'), (2, 0): ('square', 'black'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('triangle', 'black'), (2, 4): ('square', 'white'), (2, 5): ('circle', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('circle', 'white'), (0, 4): ('square', 'white'), (0, 5): ('circle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('triangle', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('circle', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('circle', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('triangle', 'white'), (2, 5): ('triangle', 'white')}, {(0, 0): ('square', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('square', 'white'), (0, 4): ('triangle', 'white'), (0, 5): ('circle', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('square', 'white'), (1, 5): ('square', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'white'), (2, 3): ('triangle', 'white'), (2, 4): ('circle', 'black'), (2, 5): ('triangle', 'white')}]","(3, 6, 3)"
+50.svg,"[{(0, 0): ('circle', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('square', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('square', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('square', 'black'), (1, 4): ('square', 'black'), (1, 5): ('circle', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('square', 'black'), (2, 3): ('circle', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('triangle', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('square', 'white'), (0, 4): ('square', 'white'), (0, 5): ('triangle', 'white'), (1, 0): ('triangle', 'white'), (1, 1): ('square', 'black'), (1, 2): ('square', 'white'), (1, 3): ('square', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('square', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('triangle', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('square', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('triangle', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('square', 'white'), (1, 4): ('triangle', 'white'), (1, 5): ('triangle', 'black'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('square', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('circle', 'black'), (2, 5): ('circle', 'white')}, {(0, 0): ('square', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('square', 'black'), (0, 3): ('triangle', 'white'), (0, 4): ('square', 'black'), (0, 5): ('circle', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('square', 'white'), (1, 2): ('triangle', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('square', 'white'), (1, 5): ('circle', 'black'), (2, 0): ('square', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('circle', 'white'), (2, 3): ('square', 'black'), (2, 4): ('circle', 'white'), (2, 5): ('triangle', 'black')}, {(0, 0): ('square', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('square', 'white'), (0, 3): ('circle', 'white'), (0, 4): ('square', 'black'), (0, 5): ('circle', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'white'), (1, 3): ('square', 'white'), (1, 4): ('square', 'black'), (1, 5): ('triangle', 'black'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('triangle', 'white'), (2, 3): ('circle', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('triangle', 'black')}]","(3, 6, 5)"
+51.svg,"[{(0, 0): ('circle', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('circle', 'white'), (0, 3): ('triangle', 'white'), (0, 4): ('circle', 'white'), (0, 5): ('circle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'black'), (1, 3): ('triangle', 'black'), (1, 4): ('triangle', 'black'), (1, 5): ('triangle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('square', 'black'), (2, 2): ('square', 'white'), (2, 3): ('square', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('circle', 'white')}, {(0, 0): ('circle', 'black'), (0, 1): ('square', 'black'), (0, 2): ('square', 'white'), (0, 3): ('circle', 'white'), (0, 4): ('square', 'white'), (0, 5): ('circle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'black'), (1, 3): ('circle', 'white'), (1, 4): ('triangle', 'white'), (1, 5): ('triangle', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('square', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('triangle', 'white'), (2, 5): ('triangle', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('square', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('circle', 'white'), (1, 0): ('triangle', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('square', 'black'), (1, 3): ('square', 'white'), (1, 4): ('square', 'black'), (1, 5): ('triangle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('square', 'black'), (2, 4): ('square', 'white'), (2, 5): ('square', 'black')}, {(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'white'), (0, 3): ('square', 'black'), (0, 4): ('circle', 'black'), (0, 5): ('triangle', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('square', 'black'), (1, 2): ('square', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('circle', 'black'), (1, 5): ('square', 'white'), (2, 0): ('square', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('square', 'white'), (2, 3): ('square', 'white'), (2, 4): ('square', 'white'), (2, 5): ('triangle', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('circle', 'white'), (0, 3): ('square', 'black'), (0, 4): ('square', 'white'), (0, 5): ('triangle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('triangle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('square', 'black'), (2, 2): ('square', 'white'), (2, 3): ('circle', 'black'), (2, 4): ('circle', 'white'), (2, 5): ('square', 'white')}]","(3, 6, 5)"
+52.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('square', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('circle', 'black'), (0, 5): ('square', 'black'), (1, 0): ('square', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('triangle', 'black'), (1, 5): ('square', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'black'), (2, 3): ('square', 'white'), (2, 4): ('square', 'white'), (2, 5): ('square', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('triangle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('square', 'white'), (1, 2): ('triangle', 'white'), (1, 3): ('square', 'white'), (1, 4): ('square', 'black'), (1, 5): ('triangle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('square', 'white'), (2, 3): ('square', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('circle', 'black')}, {(0, 0): ('circle', 'white'), (0, 1): ('square', 'white'), (0, 2): ('square', 'black'), (0, 3): ('square', 'white'), (0, 4): ('triangle', 'black'), (0, 5): ('triangle', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'black'), (1, 3): ('triangle', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('circle', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('square', 'white'), (2, 5): ('circle', 'black')}, {(0, 0): ('triangle', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('square', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('square', 'black'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('triangle', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('square', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('square', 'white'), (2, 3): ('circle', 'black'), (2, 4): ('triangle', 'white'), (2, 5): ('triangle', 'white')}, {(0, 0): ('triangle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('triangle', 'white'), (0, 4): ('square', 'white'), (0, 5): ('square', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('square', 'black'), (1, 2): ('circle', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('square', 'white'), (1, 5): ('square', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('square', 'white'), (2, 2): ('square', 'black'), (2, 3): ('square', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('circle', 'black')}]","(3, 6, 5)"
+53.svg,"[{(0, 0): ('square', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('circle', 'white'), (0, 4): ('circle', 'white'), (0, 5): ('circle', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('square', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('square', 'white'), (1, 5): ('square', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('square', 'black'), (2, 3): ('square', 'white'), (2, 4): ('square', 'black'), (2, 5): ('triangle', 'black')}, {(0, 0): ('square', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('circle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('triangle', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('square', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('square', 'black'), (2, 3): ('triangle', 'white'), (2, 4): ('circle', 'white'), (2, 5): ('square', 'black')}, {(0, 0): ('square', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('square', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('triangle', 'white'), (1, 0): ('triangle', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'black'), (1, 3): ('square', 'black'), (1, 4): ('triangle', 'black'), (1, 5): ('triangle', 'white'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'white'), (2, 3): ('square', 'black'), (2, 4): ('circle', 'black'), (2, 5): ('circle', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('square', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('triangle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('square', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('square', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('circle', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('square', 'white'), (2, 3): ('triangle', 'white'), (2, 4): ('square', 'black'), (2, 5): ('triangle', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('square', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('triangle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'black'), (1, 3): ('circle', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('square', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('circle', 'black'), (2, 4): ('square', 'black'), (2, 5): ('square', 'black')}]","(3, 6, 5)"
+54.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('square', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('circle', 'black'), (0, 5): ('triangle', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('square', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('triangle', 'white'), (1, 4): ('square', 'white'), (1, 5): ('square', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('square', 'white'), (2, 3): ('circle', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('square', 'black')}, {(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('square', 'white'), (0, 3): ('triangle', 'white'), (0, 4): ('triangle', 'white'), (0, 5): ('square', 'white'), (1, 0): ('square', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('circle', 'black'), (1, 5): ('triangle', 'black'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('square', 'black'), (2, 3): ('circle', 'black'), (2, 4): ('square', 'white'), (2, 5): ('triangle', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'black'), (0, 3): ('circle', 'white'), (0, 4): ('circle', 'white'), (0, 5): ('triangle', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'black'), (1, 3): ('triangle', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('circle', 'black'), (2, 0): ('square', 'white'), (2, 1): ('square', 'black'), (2, 2): ('triangle', 'white'), (2, 3): ('circle', 'black'), (2, 4): ('square', 'white'), (2, 5): ('triangle', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('square', 'white'), (0, 2): ('square', 'black'), (0, 3): ('square', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('triangle', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('square', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('triangle', 'black'), (1, 5): ('circle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('circle', 'white'), (2, 3): ('circle', 'black'), (2, 4): ('square', 'white'), (2, 5): ('square', 'white')}, {(0, 0): ('square', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('triangle', 'white'), (0, 4): ('square', 'white'), (0, 5): ('triangle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('triangle', 'white'), (1, 5): ('circle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('square', 'black'), (2, 3): ('triangle', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('triangle', 'black')}]","(3, 6, 5)"
+55.svg,"[{(0, 0): ('square', 'black'), (0, 1): ('square', 'black'), (0, 2): ('circle', 'white'), (0, 3): ('triangle', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('circle', 'white'), (1, 0): ('triangle', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('square', 'black'), (1, 3): ('square', 'black'), (1, 4): ('circle', 'black'), (1, 5): ('circle', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('square', 'white'), (2, 3): ('circle', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('circle', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('square', 'black'), (0, 4): ('circle', 'black'), (0, 5): ('circle', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('square', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('triangle', 'white'), (1, 5): ('square', 'white'), (2, 0): ('square', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('square', 'white'), (2, 4): ('circle', 'white'), (2, 5): ('square', 'black')}, {(0, 0): ('circle', 'black'), (0, 1): ('square', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('square', 'black'), (0, 5): ('square', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('square', 'black'), (1, 2): ('triangle', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('square', 'black'), (1, 5): ('square', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('square', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('circle', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'black'), (0, 3): ('square', 'white'), (0, 4): ('square', 'white'), (0, 5): ('triangle', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('square', 'black'), (1, 2): ('square', 'black'), (1, 3): ('square', 'white'), (1, 4): ('triangle', 'white'), (1, 5): ('circle', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('triangle', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('circle', 'white')}, {(0, 0): ('square', 'black'), (0, 1): ('square', 'white'), (0, 2): ('triangle', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('triangle', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('square', 'black'), (1, 3): ('square', 'white'), (1, 4): ('triangle', 'black'), (1, 5): ('square', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'black'), (2, 3): ('triangle', 'white'), (2, 4): ('square', 'black'), (2, 5): ('circle', 'white')}]","(3, 6, 5)"
+56.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('square', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('triangle', 'white'), (0, 4): ('circle', 'white'), (0, 5): ('triangle', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('square', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('triangle', 'white'), (1, 4): ('triangle', 'white'), (1, 5): ('triangle', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('square', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('circle', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('circle', 'white'), (0, 4): ('triangle', 'white'), (0, 5): ('circle', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('triangle', 'black'), (1, 3): ('square', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('square', 'black'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('square', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('square', 'white'), (2, 5): ('square', 'white')}, {(0, 0): ('circle', 'black'), (0, 1): ('square', 'white'), (0, 2): ('triangle', 'white'), (0, 3): ('circle', 'white'), (0, 4): ('square', 'white'), (0, 5): ('triangle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('square', 'black'), (1, 4): ('triangle', 'black'), (1, 5): ('square', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('square', 'black'), (2, 4): ('triangle', 'white'), (2, 5): ('square', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('square', 'white'), (0, 2): ('square', 'black'), (0, 3): ('circle', 'white'), (0, 4): ('triangle', 'white'), (0, 5): ('square', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('triangle', 'black'), (1, 3): ('circle', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('circle', 'black'), (2, 0): ('square', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('circle', 'white'), (2, 4): ('circle', 'white'), (2, 5): ('circle', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('square', 'white'), (0, 4): ('circle', 'black'), (0, 5): ('triangle', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('circle', 'black'), (1, 3): ('triangle', 'white'), (1, 4): ('square', 'white'), (1, 5): ('triangle', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('square', 'white'), (2, 3): ('triangle', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('square', 'black')}]","(3, 6, 5)"
+57.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('square', 'black'), (0, 2): ('circle', 'white'), (0, 3): ('square', 'black'), (0, 4): ('square', 'white'), (0, 5): ('square', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('square', 'white'), (1, 3): ('triangle', 'white'), (1, 4): ('square', 'black'), (1, 5): ('square', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('square', 'black'), (2, 4): ('circle', 'white'), (2, 5): ('triangle', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('square', 'black'), (0, 3): ('square', 'black'), (0, 4): ('square', 'black'), (0, 5): ('square', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'black'), (1, 3): ('triangle', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('circle', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('triangle', 'white'), (2, 4): ('triangle', 'white'), (2, 5): ('triangle', 'black')}, {(0, 0): ('square', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('square', 'white'), (0, 4): ('square', 'white'), (0, 5): ('square', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('square', 'white'), (1, 2): ('triangle', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('square', 'white'), (1, 5): ('circle', 'black'), (2, 0): ('square', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('circle', 'white'), (2, 3): ('triangle', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('square', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('square', 'white'), (0, 2): ('triangle', 'black'), (0, 3): ('square', 'white'), (0, 4): ('triangle', 'black'), (0, 5): ('circle', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('triangle', 'black'), (1, 5): ('circle', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('triangle', 'white'), (2, 3): ('square', 'black'), (2, 4): ('circle', 'black'), (2, 5): ('square', 'white')}, {(0, 0): ('triangle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('square', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('square', 'white'), (1, 0): ('square', 'black'), (1, 1): ('square', 'black'), (1, 2): ('square', 'white'), (1, 3): ('triangle', 'white'), (1, 4): ('square', 'black'), (1, 5): ('circle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('circle', 'black'), (2, 3): ('square', 'white'), (2, 4): ('square', 'black'), (2, 5): ('triangle', 'black')}]","(3, 6, 5)"
+58.svg,"[{(0, 0): ('triangle', 'white'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('square', 'white'), (0, 4): ('square', 'white'), (0, 5): ('triangle', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('square', 'white'), (1, 4): ('triangle', 'black'), (1, 5): ('circle', 'black'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('triangle', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('square', 'black')}, {(0, 0): ('triangle', 'black'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('square', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('circle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('square', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('square', 'black'), (1, 5): ('circle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('circle', 'black'), (2, 3): ('square', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('circle', 'black')}, {(0, 0): ('square', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('square', 'black'), (0, 5): ('square', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('square', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('square', 'black'), (1, 5): ('circle', 'black'), (2, 0): ('square', 'white'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('circle', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('square', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('square', 'white'), (0, 3): ('circle', 'white'), (0, 4): ('square', 'black'), (0, 5): ('triangle', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'black'), (1, 3): ('triangle', 'black'), (1, 4): ('square', 'white'), (1, 5): ('square', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('square', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('square', 'black'), (2, 5): ('circle', 'black')}, {(0, 0): ('square', 'black'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('circle', 'white'), (0, 4): ('triangle', 'black'), (0, 5): ('square', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('square', 'black'), (1, 5): ('square', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('circle', 'white'), (2, 4): ('circle', 'white'), (2, 5): ('square', 'black')}]","(3, 6, 5)"
+59.svg,"[{(0, 0): ('circle', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('square', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('circle', 'white'), (1, 0): ('triangle', 'white'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'white'), (1, 3): ('square', 'black'), (1, 4): ('triangle', 'black'), (1, 5): ('circle', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('square', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('square', 'black')}, {(0, 0): ('triangle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('triangle', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('square', 'white'), (1, 3): ('triangle', 'white'), (1, 4): ('triangle', 'black'), (1, 5): ('circle', 'black'), (2, 0): ('square', 'white'), (2, 1): ('square', 'black'), (2, 2): ('square', 'black'), (2, 3): ('square', 'white'), (2, 4): ('square', 'black'), (2, 5): ('square', 'white')}, {(0, 0): ('circle', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('circle', 'white'), (0, 4): ('circle', 'white'), (0, 5): ('square', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('triangle', 'black'), (1, 3): ('triangle', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('square', 'white'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'white'), (2, 3): ('circle', 'black'), (2, 4): ('circle', 'black'), (2, 5): ('triangle', 'white')}, {(0, 0): ('square', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('triangle', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('square', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'black'), (1, 3): ('square', 'black'), (1, 4): ('triangle', 'black'), (1, 5): ('circle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('square', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('circle', 'white')}, {(0, 0): ('circle', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('triangle', 'white'), (0, 3): ('triangle', 'white'), (0, 4): ('triangle', 'white'), (0, 5): ('triangle', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'white'), (1, 3): ('square', 'white'), (1, 4): ('triangle', 'black'), (1, 5): ('circle', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('circle', 'white'), (2, 4): ('square', 'white'), (2, 5): ('triangle', 'white')}]","(3, 6, 5)"
+60.svg,"[{(0, 0): ('circle', 'black'), (0, 1): ('square', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('circle', 'black'), (0, 6): ('triangle', 'white'), (0, 7): ('circle', 'black'), (0, 8): ('square', 'white'), (1, 0): ('triangle', 'white'), (1, 1): ('square', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('triangle', 'black'), (1, 5): ('triangle', 'white'), (1, 6): ('circle', 'black'), (1, 7): ('triangle', 'black'), (1, 8): ('square', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('triangle', 'white'), (2, 3): ('circle', 'black'), (2, 4): ('square', 'white'), (2, 5): ('square', 'black'), (2, 6): ('square', 'black'), (2, 7): ('square', 'white'), (2, 8): ('square', 'white')}]","(3, 9, 1)"
+61.svg,"[{(0, 0): ('square', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('square', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('triangle', 'black'), (0, 6): ('square', 'black'), (0, 7): ('square', 'black'), (0, 8): ('circle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('square', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('square', 'black'), (1, 4): ('circle', 'black'), (1, 5): ('circle', 'white'), (1, 6): ('square', 'black'), (1, 7): ('triangle', 'white'), (1, 8): ('circle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('square', 'black'), (2, 3): ('circle', 'black'), (2, 4): ('circle', 'black'), (2, 5): ('triangle', 'black'), (2, 6): ('square', 'white'), (2, 7): ('triangle', 'black'), (2, 8): ('circle', 'white')}]","(3, 9, 1)"
+62.svg,"[{(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('square', 'black'), (0, 6): ('circle', 'white'), (0, 7): ('square', 'white'), (0, 8): ('triangle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('triangle', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('square', 'black'), (1, 5): ('square', 'white'), (1, 6): ('circle', 'black'), (1, 7): ('triangle', 'black'), (1, 8): ('circle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('square', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('square', 'black'), (2, 5): ('square', 'black'), (2, 6): ('triangle', 'white'), (2, 7): ('triangle', 'black'), (2, 8): ('triangle', 'black')}]","(3, 9, 1)"
+63.svg,"[{(0, 0): ('triangle', 'white'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('circle', 'white'), (0, 4): ('circle', 'black'), (0, 5): ('square', 'white'), (0, 6): ('circle', 'black'), (0, 7): ('square', 'white'), (0, 8): ('square', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('square', 'white'), (1, 3): ('triangle', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('circle', 'white'), (1, 6): ('square', 'white'), (1, 7): ('triangle', 'white'), (1, 8): ('square', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('circle', 'white'), (2, 5): ('circle', 'black'), (2, 6): ('square', 'black'), (2, 7): ('triangle', 'black'), (2, 8): ('triangle', 'white')}]","(3, 9, 1)"
+64.svg,"[{(0, 0): ('square', 'black'), (0, 1): ('square', 'white'), (0, 2): ('square', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('circle', 'black'), (0, 5): ('circle', 'black'), (0, 6): ('triangle', 'black'), (0, 7): ('triangle', 'black'), (0, 8): ('circle', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('triangle', 'white'), (1, 3): ('square', 'black'), (1, 4): ('triangle', 'black'), (1, 5): ('triangle', 'white'), (1, 6): ('triangle', 'white'), (1, 7): ('circle', 'black'), (1, 8): ('triangle', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'black'), (2, 2): ('square', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('square', 'black'), (2, 5): ('circle', 'black'), (2, 6): ('square', 'white'), (2, 7): ('circle', 'black'), (2, 8): ('square', 'white')}]","(3, 9, 1)"
+65.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('square', 'white'), (0, 4): ('triangle', 'black'), (0, 5): ('square', 'white'), (0, 6): ('triangle', 'white'), (0, 7): ('circle', 'black'), (0, 8): ('square', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('triangle', 'white'), (1, 5): ('square', 'black'), (1, 6): ('triangle', 'white'), (1, 7): ('square', 'black'), (1, 8): ('circle', 'black'), (2, 0): ('square', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('triangle', 'black'), (2, 3): ('triangle', 'black'), (2, 4): ('triangle', 'white'), (2, 5): ('square', 'white'), (2, 6): ('triangle', 'white'), (2, 7): ('triangle', 'white'), (2, 8): ('circle', 'white')}]","(3, 9, 1)"
+66.svg,"[{(0, 0): ('circle', 'black'), (0, 1): ('square', 'white'), (0, 2): ('triangle', 'white'), (0, 3): ('circle', 'white'), (0, 4): ('square', 'white'), (0, 5): ('triangle', 'black'), (0, 6): ('square', 'white'), (0, 7): ('square', 'black'), (0, 8): ('square', 'white'), (1, 0): ('square', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'black'), (1, 3): ('square', 'white'), (1, 4): ('triangle', 'white'), (1, 5): ('triangle', 'black'), (1, 6): ('circle', 'black'), (1, 7): ('circle', 'black'), (1, 8): ('triangle', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('square', 'black'), (2, 3): ('triangle', 'black'), (2, 4): ('circle', 'white'), (2, 5): ('triangle', 'white'), (2, 6): ('triangle', 'black'), (2, 7): ('triangle', 'black'), (2, 8): ('circle', 'white')}]","(3, 9, 1)"
+67.svg,"[{(0, 0): ('circle', 'black'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('triangle', 'black'), (0, 4): ('square', 'black'), (0, 5): ('circle', 'black'), (0, 6): ('square', 'black'), (0, 7): ('triangle', 'black'), (0, 8): ('circle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'black'), (1, 3): ('circle', 'white'), (1, 4): ('square', 'white'), (1, 5): ('triangle', 'white'), (1, 6): ('circle', 'white'), (1, 7): ('square', 'white'), (1, 8): ('triangle', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('circle', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('circle', 'black'), (2, 6): ('triangle', 'white'), (2, 7): ('triangle', 'black'), (2, 8): ('square', 'white')}]","(3, 9, 1)"
+68.svg,"[{(0, 0): ('circle', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('square', 'white'), (0, 4): ('triangle', 'white'), (0, 5): ('square', 'white'), (0, 6): ('circle', 'black'), (0, 7): ('square', 'black'), (0, 8): ('circle', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('square', 'white'), (1, 2): ('triangle', 'white'), (1, 3): ('square', 'black'), (1, 4): ('square', 'black'), (1, 5): ('triangle', 'white'), (1, 6): ('triangle', 'black'), (1, 7): ('square', 'white'), (1, 8): ('circle', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('triangle', 'white'), (2, 5): ('circle', 'white'), (2, 6): ('circle', 'white'), (2, 7): ('square', 'black'), (2, 8): ('square', 'black')}]","(3, 9, 1)"
+69.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('circle', 'white'), (0, 3): ('triangle', 'white'), (0, 4): ('square', 'black'), (0, 5): ('circle', 'black'), (0, 6): ('circle', 'black'), (0, 7): ('square', 'white'), (0, 8): ('square', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('square', 'white'), (1, 5): ('square', 'white'), (1, 6): ('square', 'white'), (1, 7): ('square', 'white'), (1, 8): ('square', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('square', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('circle', 'black'), (2, 5): ('triangle', 'black'), (2, 6): ('triangle', 'white'), (2, 7): ('circle', 'black'), (2, 8): ('triangle', 'black')}]","(3, 9, 1)"
+70.svg,"[{(0, 0): ('triangle', 'black'), (0, 1): ('square', 'black'), (0, 2): ('square', 'black'), (0, 3): ('square', 'white'), (0, 4): ('triangle', 'white'), (0, 5): ('triangle', 'white'), (0, 6): ('circle', 'white'), (0, 7): ('triangle', 'black'), (0, 8): ('circle', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('square', 'black'), (1, 3): ('triangle', 'white'), (1, 4): ('square', 'white'), (1, 5): ('square', 'black'), (1, 6): ('square', 'white'), (1, 7): ('triangle', 'white'), (1, 8): ('square', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('triangle', 'white'), (2, 5): ('triangle', 'black'), (2, 6): ('square', 'white'), (2, 7): ('triangle', 'white'), (2, 8): ('square', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('square', 'white'), (0, 4): ('triangle', 'white'), (0, 5): ('circle', 'black'), (0, 6): ('triangle', 'black'), (0, 7): ('square', 'black'), (0, 8): ('square', 'white'), (1, 0): ('triangle', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('square', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('circle', 'black'), (1, 6): ('circle', 'white'), (1, 7): ('circle', 'black'), (1, 8): ('square', 'black'), (2, 0): ('square', 'black'), (2, 1): ('square', 'black'), (2, 2): ('square', 'black'), (2, 3): ('circle', 'black'), (2, 4): ('triangle', 'white'), (2, 5): ('square', 'black'), (2, 6): ('triangle', 'black'), (2, 7): ('square', 'white'), (2, 8): ('square', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('square', 'black'), (0, 2): ('square', 'black'), (0, 3): ('triangle', 'white'), (0, 4): ('triangle', 'black'), (0, 5): ('square', 'black'), (0, 6): ('circle', 'white'), (0, 7): ('square', 'white'), (0, 8): ('circle', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'black'), (1, 3): ('square', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('circle', 'white'), (1, 6): ('circle', 'black'), (1, 7): ('triangle', 'white'), (1, 8): ('circle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('square', 'black'), (2, 3): ('square', 'black'), (2, 4): ('square', 'white'), (2, 5): ('triangle', 'black'), (2, 6): ('circle', 'white'), (2, 7): ('square', 'black'), (2, 8): ('square', 'black')}]","(3, 9, 3)"
+71.svg,"[{(0, 0): ('square', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('triangle', 'black'), (0, 3): ('circle', 'white'), (0, 4): ('circle', 'white'), (0, 5): ('triangle', 'black'), (0, 6): ('triangle', 'white'), (0, 7): ('triangle', 'white'), (0, 8): ('circle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('square', 'black'), (1, 2): ('triangle', 'black'), (1, 3): ('square', 'black'), (1, 4): ('circle', 'black'), (1, 5): ('square', 'white'), (1, 6): ('circle', 'white'), (1, 7): ('triangle', 'black'), (1, 8): ('square', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('square', 'white'), (2, 4): ('triangle', 'white'), (2, 5): ('circle', 'white'), (2, 6): ('square', 'black'), (2, 7): ('circle', 'white'), (2, 8): ('triangle', 'white')}, {(0, 0): ('square', 'black'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('square', 'white'), (0, 6): ('square', 'black'), (0, 7): ('triangle', 'black'), (0, 8): ('triangle', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'black'), (1, 3): ('square', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('square', 'white'), (1, 6): ('square', 'white'), (1, 7): ('triangle', 'black'), (1, 8): ('square', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('square', 'black'), (2, 2): ('triangle', 'black'), (2, 3): ('triangle', 'white'), (2, 4): ('square', 'black'), (2, 5): ('triangle', 'white'), (2, 6): ('circle', 'black'), (2, 7): ('circle', 'black'), (2, 8): ('circle', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('square', 'white'), (0, 3): ('triangle', 'white'), (0, 4): ('square', 'black'), (0, 5): ('square', 'white'), (0, 6): ('square', 'white'), (0, 7): ('square', 'white'), (0, 8): ('square', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('circle', 'black'), (1, 3): ('triangle', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('circle', 'black'), (1, 6): ('triangle', 'white'), (1, 7): ('triangle', 'white'), (1, 8): ('circle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('square', 'white'), (2, 3): ('circle', 'black'), (2, 4): ('circle', 'black'), (2, 5): ('triangle', 'black'), (2, 6): ('circle', 'black'), (2, 7): ('triangle', 'white'), (2, 8): ('triangle', 'black')}]","(3, 9, 3)"
+72.svg,"[{(0, 0): ('triangle', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('triangle', 'white'), (0, 4): ('square', 'black'), (0, 5): ('triangle', 'black'), (0, 6): ('square', 'black'), (0, 7): ('circle', 'black'), (0, 8): ('triangle', 'white'), (1, 0): ('triangle', 'white'), (1, 1): ('square', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('circle', 'black'), (1, 6): ('circle', 'white'), (1, 7): ('triangle', 'white'), (1, 8): ('triangle', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('square', 'black'), (2, 3): ('square', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('square', 'black'), (2, 6): ('square', 'black'), (2, 7): ('triangle', 'black'), (2, 8): ('square', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('square', 'black'), (0, 4): ('circle', 'black'), (0, 5): ('triangle', 'white'), (0, 6): ('circle', 'white'), (0, 7): ('triangle', 'white'), (0, 8): ('circle', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('square', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('square', 'white'), (1, 6): ('circle', 'black'), (1, 7): ('triangle', 'black'), (1, 8): ('triangle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('square', 'white'), (2, 2): ('circle', 'black'), (2, 3): ('square', 'black'), (2, 4): ('square', 'black'), (2, 5): ('square', 'white'), (2, 6): ('circle', 'black'), (2, 7): ('triangle', 'black'), (2, 8): ('triangle', 'black')}, {(0, 0): ('circle', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('square', 'black'), (0, 3): ('square', 'white'), (0, 4): ('triangle', 'white'), (0, 5): ('circle', 'black'), (0, 6): ('circle', 'black'), (0, 7): ('square', 'white'), (0, 8): ('triangle', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('square', 'black'), (1, 5): ('square', 'black'), (1, 6): ('square', 'white'), (1, 7): ('square', 'black'), (1, 8): ('square', 'black'), (2, 0): ('square', 'black'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('triangle', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('circle', 'white'), (2, 6): ('circle', 'black'), (2, 7): ('square', 'black'), (2, 8): ('triangle', 'black')}]","(3, 9, 3)"
+73.svg,"[{(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('triangle', 'white'), (0, 4): ('circle', 'white'), (0, 5): ('square', 'black'), (0, 6): ('circle', 'black'), (0, 7): ('triangle', 'black'), (0, 8): ('square', 'white'), (1, 0): ('square', 'white'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('square', 'white'), (1, 5): ('circle', 'white'), (1, 6): ('triangle', 'white'), (1, 7): ('circle', 'white'), (1, 8): ('square', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('circle', 'white'), (2, 3): ('square', 'white'), (2, 4): ('circle', 'black'), (2, 5): ('circle', 'black'), (2, 6): ('triangle', 'white'), (2, 7): ('triangle', 'white'), (2, 8): ('triangle', 'black')}, {(0, 0): ('triangle', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('triangle', 'black'), (0, 6): ('circle', 'black'), (0, 7): ('circle', 'white'), (0, 8): ('circle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'black'), (1, 3): ('triangle', 'black'), (1, 4): ('triangle', 'black'), (1, 5): ('circle', 'white'), (1, 6): ('triangle', 'white'), (1, 7): ('square', 'black'), (1, 8): ('square', 'black'), (2, 0): ('square', 'black'), (2, 1): ('square', 'black'), (2, 2): ('triangle', 'black'), (2, 3): ('square', 'white'), (2, 4): ('circle', 'white'), (2, 5): ('square', 'black'), (2, 6): ('square', 'white'), (2, 7): ('square', 'black'), (2, 8): ('square', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('square', 'black'), (0, 3): ('circle', 'white'), (0, 4): ('circle', 'white'), (0, 5): ('circle', 'white'), (0, 6): ('square', 'black'), (0, 7): ('triangle', 'black'), (0, 8): ('square', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('circle', 'black'), (1, 3): ('triangle', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('square', 'black'), (1, 6): ('triangle', 'black'), (1, 7): ('triangle', 'white'), (1, 8): ('circle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('square', 'white'), (2, 3): ('square', 'white'), (2, 4): ('circle', 'black'), (2, 5): ('triangle', 'black'), (2, 6): ('circle', 'black'), (2, 7): ('circle', 'black'), (2, 8): ('circle', 'black')}]","(3, 9, 3)"
+74.svg,"[{(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('square', 'black'), (0, 3): ('square', 'black'), (0, 4): ('square', 'white'), (0, 5): ('circle', 'black'), (0, 6): ('triangle', 'white'), (0, 7): ('square', 'black'), (0, 8): ('square', 'white'), (1, 0): ('square', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('square', 'black'), (1, 3): ('circle', 'white'), (1, 4): ('triangle', 'white'), (1, 5): ('square', 'white'), (1, 6): ('circle', 'white'), (1, 7): ('circle', 'white'), (1, 8): ('triangle', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('triangle', 'white'), (2, 3): ('circle', 'black'), (2, 4): ('square', 'black'), (2, 5): ('square', 'black'), (2, 6): ('triangle', 'black'), (2, 7): ('square', 'black'), (2, 8): ('triangle', 'black')}, {(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('triangle', 'white'), (0, 6): ('circle', 'black'), (0, 7): ('triangle', 'black'), (0, 8): ('square', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('square', 'black'), (1, 3): ('triangle', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('circle', 'white'), (1, 6): ('triangle', 'white'), (1, 7): ('square', 'black'), (1, 8): ('circle', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('circle', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('triangle', 'black'), (2, 6): ('triangle', 'white'), (2, 7): ('square', 'white'), (2, 8): ('square', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('square', 'white'), (0, 6): ('triangle', 'white'), (0, 7): ('square', 'white'), (0, 8): ('triangle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('square', 'black'), (1, 2): ('triangle', 'black'), (1, 3): ('triangle', 'black'), (1, 4): ('triangle', 'black'), (1, 5): ('circle', 'white'), (1, 6): ('circle', 'black'), (1, 7): ('triangle', 'white'), (1, 8): ('square', 'white'), (2, 0): ('square', 'black'), (2, 1): ('square', 'white'), (2, 2): ('circle', 'black'), (2, 3): ('square', 'white'), (2, 4): ('square', 'white'), (2, 5): ('circle', 'black'), (2, 6): ('circle', 'black'), (2, 7): ('square', 'white'), (2, 8): ('triangle', 'black')}]","(3, 9, 3)"
+75.svg,"[{(0, 0): ('square', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('square', 'white'), (0, 3): ('square', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('triangle', 'black'), (0, 6): ('triangle', 'white'), (0, 7): ('circle', 'white'), (0, 8): ('triangle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'white'), (1, 3): ('square', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('circle', 'white'), (1, 6): ('triangle', 'black'), (1, 7): ('square', 'white'), (1, 8): ('square', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('square', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('square', 'black'), (2, 5): ('triangle', 'black'), (2, 6): ('triangle', 'black'), (2, 7): ('circle', 'black'), (2, 8): ('triangle', 'black')}, {(0, 0): ('square', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('square', 'white'), (0, 5): ('square', 'white'), (0, 6): ('triangle', 'white'), (0, 7): ('triangle', 'black'), (0, 8): ('triangle', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'black'), (1, 3): ('triangle', 'black'), (1, 4): ('square', 'black'), (1, 5): ('triangle', 'white'), (1, 6): ('triangle', 'black'), (1, 7): ('square', 'black'), (1, 8): ('square', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('circle', 'black'), (2, 3): ('triangle', 'black'), (2, 4): ('circle', 'white'), (2, 5): ('circle', 'black'), (2, 6): ('circle', 'white'), (2, 7): ('square', 'white'), (2, 8): ('square', 'black')}, {(0, 0): ('square', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('square', 'white'), (0, 3): ('triangle', 'black'), (0, 4): ('square', 'white'), (0, 5): ('triangle', 'black'), (0, 6): ('circle', 'white'), (0, 7): ('circle', 'white'), (0, 8): ('square', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'white'), (1, 3): ('square', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('triangle', 'black'), (1, 6): ('circle', 'black'), (1, 7): ('triangle', 'black'), (1, 8): ('triangle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('circle', 'white'), (2, 3): ('circle', 'white'), (2, 4): ('triangle', 'white'), (2, 5): ('triangle', 'white'), (2, 6): ('square', 'white'), (2, 7): ('triangle', 'white'), (2, 8): ('triangle', 'white')}]","(3, 9, 3)"
+76.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('square', 'black'), (0, 2): ('square', 'black'), (0, 3): ('square', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('square', 'white'), (0, 6): ('square', 'white'), (0, 7): ('triangle', 'black'), (0, 8): ('triangle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('square', 'white'), (1, 2): ('triangle', 'black'), (1, 3): ('square', 'black'), (1, 4): ('triangle', 'white'), (1, 5): ('square', 'black'), (1, 6): ('circle', 'black'), (1, 7): ('triangle', 'black'), (1, 8): ('circle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('square', 'white'), (2, 3): ('triangle', 'white'), (2, 4): ('triangle', 'white'), (2, 5): ('circle', 'black'), (2, 6): ('circle', 'black'), (2, 7): ('square', 'white'), (2, 8): ('circle', 'black')}, {(0, 0): ('triangle', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('triangle', 'black'), (0, 3): ('square', 'white'), (0, 4): ('triangle', 'black'), (0, 5): ('square', 'black'), (0, 6): ('circle', 'black'), (0, 7): ('triangle', 'black'), (0, 8): ('triangle', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'black'), (1, 3): ('circle', 'white'), (1, 4): ('square', 'white'), (1, 5): ('triangle', 'black'), (1, 6): ('triangle', 'black'), (1, 7): ('triangle', 'white'), (1, 8): ('square', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('triangle', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('triangle', 'black'), (2, 6): ('triangle', 'white'), (2, 7): ('triangle', 'black'), (2, 8): ('triangle', 'white')}, {(0, 0): ('triangle', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('triangle', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('square', 'black'), (0, 5): ('circle', 'black'), (0, 6): ('triangle', 'black'), (0, 7): ('triangle', 'white'), (0, 8): ('circle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('square', 'black'), (1, 2): ('square', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('triangle', 'white'), (1, 5): ('square', 'black'), (1, 6): ('square', 'white'), (1, 7): ('square', 'black'), (1, 8): ('circle', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('triangle', 'black'), (2, 3): ('triangle', 'white'), (2, 4): ('square', 'white'), (2, 5): ('square', 'black'), (2, 6): ('circle', 'black'), (2, 7): ('circle', 'white'), (2, 8): ('triangle', 'white')}]","(3, 9, 3)"
+77.svg,"[{(0, 0): ('triangle', 'black'), (0, 1): ('square', 'black'), (0, 2): ('square', 'white'), (0, 3): ('square', 'black'), (0, 4): ('square', 'black'), (0, 5): ('square', 'black'), (0, 6): ('triangle', 'white'), (0, 7): ('square', 'black'), (0, 8): ('triangle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('square', 'black'), (1, 2): ('circle', 'black'), (1, 3): ('square', 'black'), (1, 4): ('square', 'black'), (1, 5): ('circle', 'black'), (1, 6): ('circle', 'black'), (1, 7): ('circle', 'white'), (1, 8): ('triangle', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('triangle', 'white'), (2, 5): ('circle', 'black'), (2, 6): ('triangle', 'black'), (2, 7): ('square', 'white'), (2, 8): ('circle', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('circle', 'white'), (0, 4): ('square', 'white'), (0, 5): ('circle', 'black'), (0, 6): ('triangle', 'white'), (0, 7): ('triangle', 'black'), (0, 8): ('square', 'white'), (1, 0): ('square', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'black'), (1, 3): ('circle', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('circle', 'white'), (1, 6): ('triangle', 'black'), (1, 7): ('circle', 'black'), (1, 8): ('square', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('square', 'white'), (2, 2): ('square', 'white'), (2, 3): ('circle', 'white'), (2, 4): ('circle', 'black'), (2, 5): ('square', 'black'), (2, 6): ('triangle', 'white'), (2, 7): ('square', 'black'), (2, 8): ('circle', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('square', 'white'), (0, 3): ('triangle', 'white'), (0, 4): ('square', 'black'), (0, 5): ('triangle', 'white'), (0, 6): ('circle', 'black'), (0, 7): ('square', 'white'), (0, 8): ('triangle', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'black'), (1, 3): ('circle', 'white'), (1, 4): ('square', 'white'), (1, 5): ('square', 'white'), (1, 6): ('square', 'white'), (1, 7): ('circle', 'white'), (1, 8): ('circle', 'black'), (2, 0): ('square', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('triangle', 'black'), (2, 4): ('square', 'black'), (2, 5): ('triangle', 'black'), (2, 6): ('circle', 'black'), (2, 7): ('circle', 'white'), (2, 8): ('triangle', 'black')}]","(3, 9, 3)"
+78.svg,"[{(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('square', 'white'), (0, 4): ('triangle', 'white'), (0, 5): ('circle', 'white'), (0, 6): ('triangle', 'white'), (0, 7): ('circle', 'black'), (0, 8): ('triangle', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('square', 'white'), (1, 3): ('square', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('circle', 'white'), (1, 6): ('circle', 'black'), (1, 7): ('square', 'white'), (1, 8): ('triangle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'white'), (2, 3): ('circle', 'white'), (2, 4): ('square', 'white'), (2, 5): ('circle', 'white'), (2, 6): ('triangle', 'white'), (2, 7): ('triangle', 'black'), (2, 8): ('triangle', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('square', 'white'), (0, 4): ('square', 'white'), (0, 5): ('square', 'black'), (0, 6): ('triangle', 'white'), (0, 7): ('square', 'black'), (0, 8): ('circle', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('circle', 'black'), (1, 3): ('triangle', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('square', 'white'), (1, 6): ('triangle', 'white'), (1, 7): ('square', 'black'), (1, 8): ('square', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('square', 'white'), (2, 3): ('square', 'white'), (2, 4): ('square', 'white'), (2, 5): ('square', 'black'), (2, 6): ('square', 'black'), (2, 7): ('circle', 'black'), (2, 8): ('square', 'white')}, {(0, 0): ('triangle', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('triangle', 'white'), (0, 6): ('square', 'white'), (0, 7): ('square', 'white'), (0, 8): ('circle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('square', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('triangle', 'black'), (1, 5): ('square', 'black'), (1, 6): ('triangle', 'white'), (1, 7): ('square', 'black'), (1, 8): ('circle', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('circle', 'white'), (2, 3): ('triangle', 'white'), (2, 4): ('square', 'black'), (2, 5): ('triangle', 'black'), (2, 6): ('square', 'white'), (2, 7): ('circle', 'white'), (2, 8): ('square', 'white')}]","(3, 9, 3)"
+79.svg,"[{(0, 0): ('circle', 'black'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('square', 'white'), (0, 4): ('circle', 'black'), (0, 5): ('square', 'white'), (0, 6): ('square', 'black'), (0, 7): ('triangle', 'black'), (0, 8): ('square', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('square', 'white'), (1, 3): ('triangle', 'white'), (1, 4): ('square', 'white'), (1, 5): ('triangle', 'white'), (1, 6): ('square', 'black'), (1, 7): ('square', 'white'), (1, 8): ('circle', 'black'), (2, 0): ('square', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('square', 'black'), (2, 3): ('triangle', 'black'), (2, 4): ('square', 'black'), (2, 5): ('circle', 'white'), (2, 6): ('circle', 'black'), (2, 7): ('square', 'black'), (2, 8): ('square', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('circle', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('square', 'white'), (0, 6): ('circle', 'black'), (0, 7): ('square', 'white'), (0, 8): ('circle', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('square', 'white'), (1, 5): ('triangle', 'black'), (1, 6): ('square', 'white'), (1, 7): ('circle', 'black'), (1, 8): ('triangle', 'white'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'black'), (2, 3): ('square', 'white'), (2, 4): ('square', 'black'), (2, 5): ('circle', 'white'), (2, 6): ('circle', 'black'), (2, 7): ('circle', 'black'), (2, 8): ('triangle', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('triangle', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('circle', 'black'), (0, 5): ('circle', 'black'), (0, 6): ('circle', 'white'), (0, 7): ('circle', 'white'), (0, 8): ('circle', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('square', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('triangle', 'white'), (1, 6): ('triangle', 'white'), (1, 7): ('square', 'white'), (1, 8): ('circle', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('square', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('triangle', 'white'), (2, 5): ('triangle', 'white'), (2, 6): ('triangle', 'black'), (2, 7): ('circle', 'black'), (2, 8): ('square', 'white')}]","(3, 9, 3)"
+80.svg,"[{(0, 0): ('square', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('triangle', 'black'), (0, 3): ('square', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('square', 'black'), (0, 6): ('square', 'black'), (0, 7): ('square', 'black'), (0, 8): ('square', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('circle', 'black'), (1, 3): ('square', 'black'), (1, 4): ('square', 'white'), (1, 5): ('square', 'white'), (1, 6): ('circle', 'white'), (1, 7): ('square', 'white'), (1, 8): ('square', 'black'), (2, 0): ('square', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('triangle', 'black'), (2, 3): ('circle', 'black'), (2, 4): ('square', 'black'), (2, 5): ('square', 'black'), (2, 6): ('square', 'black'), (2, 7): ('square', 'black'), (2, 8): ('circle', 'black')}, {(0, 0): ('circle', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('square', 'black'), (0, 3): ('square', 'white'), (0, 4): ('circle', 'black'), (0, 5): ('circle', 'white'), (0, 6): ('triangle', 'white'), (0, 7): ('square', 'black'), (0, 8): ('triangle', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('square', 'white'), (1, 5): ('triangle', 'black'), (1, 6): ('triangle', 'black'), (1, 7): ('circle', 'white'), (1, 8): ('square', 'black'), (2, 0): ('square', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('triangle', 'black'), (2, 4): ('circle', 'white'), (2, 5): ('circle', 'black'), (2, 6): ('circle', 'black'), (2, 7): ('triangle', 'white'), (2, 8): ('triangle', 'black')}, {(0, 0): ('triangle', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('circle', 'black'), (0, 5): ('square', 'black'), (0, 6): ('triangle', 'white'), (0, 7): ('circle', 'white'), (0, 8): ('circle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('square', 'black'), (1, 2): ('square', 'black'), (1, 3): ('square', 'white'), (1, 4): ('triangle', 'white'), (1, 5): ('square', 'black'), (1, 6): ('square', 'white'), (1, 7): ('triangle', 'white'), (1, 8): ('circle', 'black'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('square', 'black'), (2, 3): ('square', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('triangle', 'black'), (2, 6): ('triangle', 'black'), (2, 7): ('square', 'white'), (2, 8): ('triangle', 'black')}, {(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('circle', 'black'), (0, 5): ('square', 'white'), (0, 6): ('square', 'white'), (0, 7): ('triangle', 'white'), (0, 8): ('square', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('triangle', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('circle', 'black'), (1, 5): ('circle', 'white'), (1, 6): ('triangle', 'white'), (1, 7): ('circle', 'black'), (1, 8): ('square', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('circle', 'white'), (2, 3): ('circle', 'black'), (2, 4): ('square', 'black'), (2, 5): ('triangle', 'black'), (2, 6): ('square', 'black'), (2, 7): ('triangle', 'white'), (2, 8): ('circle', 'black')}, {(0, 0): ('circle', 'black'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('circle', 'black'), (0, 5): ('circle', 'white'), (0, 6): ('circle', 'white'), (0, 7): ('circle', 'black'), (0, 8): ('square', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('triangle', 'black'), (1, 5): ('triangle', 'white'), (1, 6): ('square', 'white'), (1, 7): ('square', 'white'), (1, 8): ('square', 'black'), (2, 0): ('square', 'black'), (2, 1): ('square', 'black'), (2, 2): ('triangle', 'black'), (2, 3): ('triangle', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('square', 'black'), (2, 6): ('triangle', 'black'), (2, 7): ('triangle', 'black'), (2, 8): ('circle', 'white')}]","(3, 9, 5)"
+81.svg,"[{(0, 0): ('triangle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'white'), (0, 3): ('triangle', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('triangle', 'black'), (0, 6): ('triangle', 'black'), (0, 7): ('square', 'black'), (0, 8): ('circle', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('square', 'white'), (1, 5): ('triangle', 'white'), (1, 6): ('square', 'black'), (1, 7): ('triangle', 'black'), (1, 8): ('square', 'black'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('square', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('triangle', 'black'), (2, 6): ('triangle', 'black'), (2, 7): ('square', 'black'), (2, 8): ('circle', 'black')}, {(0, 0): ('square', 'white'), (0, 1): ('square', 'white'), (0, 2): ('triangle', 'white'), (0, 3): ('triangle', 'white'), (0, 4): ('triangle', 'white'), (0, 5): ('square', 'black'), (0, 6): ('square', 'black'), (0, 7): ('square', 'black'), (0, 8): ('triangle', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('square', 'black'), (1, 2): ('square', 'black'), (1, 3): ('triangle', 'white'), (1, 4): ('square', 'white'), (1, 5): ('square', 'white'), (1, 6): ('square', 'black'), (1, 7): ('circle', 'black'), (1, 8): ('circle', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('square', 'white'), (2, 4): ('triangle', 'white'), (2, 5): ('triangle', 'black'), (2, 6): ('circle', 'white'), (2, 7): ('circle', 'white'), (2, 8): ('circle', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('square', 'black'), (0, 5): ('square', 'black'), (0, 6): ('triangle', 'white'), (0, 7): ('square', 'white'), (0, 8): ('square', 'white'), (1, 0): ('square', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'black'), (1, 3): ('square', 'black'), (1, 4): ('square', 'black'), (1, 5): ('circle', 'white'), (1, 6): ('triangle', 'white'), (1, 7): ('square', 'black'), (1, 8): ('square', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('circle', 'white'), (2, 3): ('circle', 'white'), (2, 4): ('square', 'black'), (2, 5): ('triangle', 'white'), (2, 6): ('triangle', 'white'), (2, 7): ('triangle', 'black'), (2, 8): ('triangle', 'black')}, {(0, 0): ('circle', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('square', 'white'), (0, 3): ('triangle', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('triangle', 'black'), (0, 6): ('circle', 'white'), (0, 7): ('square', 'black'), (0, 8): ('circle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('triangle', 'white'), (1, 6): ('triangle', 'black'), (1, 7): ('square', 'white'), (1, 8): ('circle', 'black'), (2, 0): ('square', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('circle', 'black'), (2, 3): ('square', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('square', 'white'), (2, 6): ('square', 'black'), (2, 7): ('square', 'white'), (2, 8): ('square', 'white')}, {(0, 0): ('square', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('square', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('triangle', 'black'), (0, 6): ('triangle', 'white'), (0, 7): ('circle', 'black'), (0, 8): ('square', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'white'), (1, 3): ('square', 'black'), (1, 4): ('square', 'white'), (1, 5): ('triangle', 'white'), (1, 6): ('circle', 'white'), (1, 7): ('triangle', 'black'), (1, 8): ('triangle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('square', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('circle', 'white'), (2, 5): ('triangle', 'black'), (2, 6): ('circle', 'black'), (2, 7): ('circle', 'black'), (2, 8): ('square', 'white')}]","(3, 9, 5)"
+82.svg,"[{(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('triangle', 'white'), (0, 3): ('square', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('square', 'white'), (0, 6): ('triangle', 'white'), (0, 7): ('square', 'white'), (0, 8): ('square', 'white'), (1, 0): ('triangle', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('triangle', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('circle', 'black'), (1, 6): ('triangle', 'white'), (1, 7): ('circle', 'black'), (1, 8): ('square', 'white'), (2, 0): ('square', 'white'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('square', 'white'), (2, 4): ('circle', 'white'), (2, 5): ('square', 'white'), (2, 6): ('circle', 'white'), (2, 7): ('square', 'white'), (2, 8): ('triangle', 'white')}, {(0, 0): ('triangle', 'black'), (0, 1): ('square', 'white'), (0, 2): ('square', 'black'), (0, 3): ('triangle', 'white'), (0, 4): ('square', 'white'), (0, 5): ('triangle', 'black'), (0, 6): ('triangle', 'black'), (0, 7): ('square', 'white'), (0, 8): ('circle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('square', 'black'), (1, 5): ('circle', 'black'), (1, 6): ('square', 'black'), (1, 7): ('triangle', 'black'), (1, 8): ('triangle', 'black'), (2, 0): ('square', 'black'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('circle', 'white'), (2, 4): ('square', 'black'), (2, 5): ('circle', 'black'), (2, 6): ('triangle', 'white'), (2, 7): ('triangle', 'black'), (2, 8): ('triangle', 'white')}, {(0, 0): ('square', 'black'), (0, 1): ('square', 'black'), (0, 2): ('square', 'white'), (0, 3): ('circle', 'white'), (0, 4): ('triangle', 'black'), (0, 5): ('square', 'white'), (0, 6): ('triangle', 'black'), (0, 7): ('triangle', 'black'), (0, 8): ('square', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('square', 'black'), (1, 2): ('square', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('square', 'black'), (1, 6): ('circle', 'black'), (1, 7): ('circle', 'white'), (1, 8): ('triangle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('square', 'black'), (2, 2): ('triangle', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('square', 'black'), (2, 5): ('triangle', 'white'), (2, 6): ('triangle', 'white'), (2, 7): ('triangle', 'black'), (2, 8): ('square', 'white')}, {(0, 0): ('circle', 'black'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'black'), (0, 3): ('square', 'white'), (0, 4): ('square', 'black'), (0, 5): ('triangle', 'black'), (0, 6): ('triangle', 'white'), (0, 7): ('square', 'white'), (0, 8): ('circle', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('square', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('triangle', 'black'), (1, 5): ('square', 'white'), (1, 6): ('triangle', 'black'), (1, 7): ('square', 'black'), (1, 8): ('square', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('square', 'white'), (2, 2): ('square', 'white'), (2, 3): ('triangle', 'white'), (2, 4): ('triangle', 'white'), (2, 5): ('square', 'black'), (2, 6): ('square', 'black'), (2, 7): ('square', 'white'), (2, 8): ('circle', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('square', 'black'), (0, 3): ('circle', 'white'), (0, 4): ('square', 'white'), (0, 5): ('circle', 'black'), (0, 6): ('triangle', 'white'), (0, 7): ('circle', 'white'), (0, 8): ('square', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('square', 'white'), (1, 4): ('triangle', 'black'), (1, 5): ('triangle', 'white'), (1, 6): ('triangle', 'black'), (1, 7): ('circle', 'black'), (1, 8): ('square', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('square', 'black'), (2, 3): ('square', 'black'), (2, 4): ('square', 'white'), (2, 5): ('triangle', 'black'), (2, 6): ('triangle', 'black'), (2, 7): ('circle', 'black'), (2, 8): ('circle', 'black')}]","(3, 9, 5)"
+83.svg,"[{(0, 0): ('triangle', 'white'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('circle', 'white'), (0, 4): ('triangle', 'black'), (0, 5): ('triangle', 'black'), (0, 6): ('circle', 'white'), (0, 7): ('circle', 'white'), (0, 8): ('square', 'black'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('square', 'white'), (1, 3): ('square', 'black'), (1, 4): ('square', 'white'), (1, 5): ('square', 'black'), (1, 6): ('square', 'white'), (1, 7): ('square', 'black'), (1, 8): ('circle', 'black'), (2, 0): ('square', 'black'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('triangle', 'white'), (2, 4): ('square', 'white'), (2, 5): ('circle', 'black'), (2, 6): ('triangle', 'black'), (2, 7): ('circle', 'black'), (2, 8): ('circle', 'black')}, {(0, 0): ('circle', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'white'), (0, 3): ('triangle', 'black'), (0, 4): ('square', 'black'), (0, 5): ('triangle', 'white'), (0, 6): ('triangle', 'black'), (0, 7): ('triangle', 'white'), (0, 8): ('triangle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('square', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('square', 'black'), (1, 5): ('circle', 'white'), (1, 6): ('circle', 'black'), (1, 7): ('square', 'black'), (1, 8): ('circle', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('square', 'white'), (2, 3): ('circle', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('square', 'white'), (2, 6): ('circle', 'black'), (2, 7): ('triangle', 'black'), (2, 8): ('square', 'white')}, {(0, 0): ('triangle', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('square', 'white'), (0, 5): ('circle', 'black'), (0, 6): ('square', 'white'), (0, 7): ('triangle', 'white'), (0, 8): ('circle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('square', 'black'), (1, 3): ('square', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('square', 'white'), (1, 6): ('circle', 'black'), (1, 7): ('triangle', 'black'), (1, 8): ('triangle', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('circle', 'white'), (2, 3): ('square', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('square', 'black'), (2, 6): ('triangle', 'black'), (2, 7): ('triangle', 'white'), (2, 8): ('triangle', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('circle', 'white'), (0, 6): ('triangle', 'white'), (0, 7): ('triangle', 'black'), (0, 8): ('square', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'black'), (1, 3): ('square', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('triangle', 'white'), (1, 6): ('circle', 'black'), (1, 7): ('triangle', 'black'), (1, 8): ('square', 'black'), (2, 0): ('square', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('circle', 'white'), (2, 3): ('circle', 'black'), (2, 4): ('circle', 'black'), (2, 5): ('circle', 'black'), (2, 6): ('triangle', 'black'), (2, 7): ('triangle', 'white'), (2, 8): ('triangle', 'black')}, {(0, 0): ('circle', 'black'), (0, 1): ('square', 'white'), (0, 2): ('square', 'white'), (0, 3): ('square', 'white'), (0, 4): ('circle', 'white'), (0, 5): ('square', 'white'), (0, 6): ('triangle', 'black'), (0, 7): ('circle', 'black'), (0, 8): ('square', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('triangle', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('square', 'white'), (1, 5): ('triangle', 'black'), (1, 6): ('square', 'white'), (1, 7): ('triangle', 'black'), (1, 8): ('triangle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('square', 'white'), (2, 4): ('square', 'white'), (2, 5): ('square', 'black'), (2, 6): ('circle', 'white'), (2, 7): ('circle', 'white'), (2, 8): ('triangle', 'white')}]","(3, 9, 5)"
+84.svg,"[{(0, 0): ('circle', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('triangle', 'white'), (0, 3): ('square', 'black'), (0, 4): ('square', 'white'), (0, 5): ('square', 'white'), (0, 6): ('triangle', 'black'), (0, 7): ('square', 'white'), (0, 8): ('circle', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('triangle', 'white'), (1, 5): ('square', 'black'), (1, 6): ('circle', 'black'), (1, 7): ('triangle', 'black'), (1, 8): ('circle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('triangle', 'white'), (2, 3): ('square', 'black'), (2, 4): ('triangle', 'white'), (2, 5): ('triangle', 'black'), (2, 6): ('square', 'black'), (2, 7): ('triangle', 'white'), (2, 8): ('square', 'black')}, {(0, 0): ('circle', 'black'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('circle', 'white'), (0, 4): ('square', 'white'), (0, 5): ('circle', 'black'), (0, 6): ('triangle', 'black'), (0, 7): ('triangle', 'white'), (0, 8): ('square', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('square', 'white'), (1, 4): ('square', 'black'), (1, 5): ('triangle', 'white'), (1, 6): ('triangle', 'white'), (1, 7): ('circle', 'black'), (1, 8): ('square', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('square', 'black'), (2, 3): ('square', 'white'), (2, 4): ('square', 'white'), (2, 5): ('triangle', 'white'), (2, 6): ('square', 'white'), (2, 7): ('circle', 'white'), (2, 8): ('circle', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('triangle', 'white'), (0, 4): ('circle', 'black'), (0, 5): ('square', 'black'), (0, 6): ('square', 'white'), (0, 7): ('triangle', 'white'), (0, 8): ('square', 'white'), (1, 0): ('triangle', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('square', 'black'), (1, 5): ('circle', 'black'), (1, 6): ('triangle', 'white'), (1, 7): ('circle', 'white'), (1, 8): ('triangle', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('triangle', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('triangle', 'white'), (2, 6): ('square', 'black'), (2, 7): ('square', 'black'), (2, 8): ('square', 'black')}, {(0, 0): ('circle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('square', 'white'), (0, 3): ('square', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('triangle', 'black'), (0, 6): ('triangle', 'white'), (0, 7): ('circle', 'black'), (0, 8): ('circle', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('square', 'black'), (1, 3): ('square', 'black'), (1, 4): ('circle', 'black'), (1, 5): ('circle', 'white'), (1, 6): ('square', 'black'), (1, 7): ('triangle', 'white'), (1, 8): ('triangle', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('square', 'white'), (2, 2): ('circle', 'black'), (2, 3): ('circle', 'black'), (2, 4): ('triangle', 'white'), (2, 5): ('triangle', 'black'), (2, 6): ('circle', 'black'), (2, 7): ('square', 'black'), (2, 8): ('square', 'white')}, {(0, 0): ('circle', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('triangle', 'white'), (0, 4): ('square', 'black'), (0, 5): ('circle', 'white'), (0, 6): ('triangle', 'white'), (0, 7): ('triangle', 'black'), (0, 8): ('circle', 'white'), (1, 0): ('triangle', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('square', 'white'), (1, 3): ('square', 'black'), (1, 4): ('triangle', 'white'), (1, 5): ('square', 'black'), (1, 6): ('triangle', 'white'), (1, 7): ('square', 'black'), (1, 8): ('circle', 'black'), (2, 0): ('square', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('circle', 'white'), (2, 3): ('triangle', 'white'), (2, 4): ('square', 'black'), (2, 5): ('circle', 'black'), (2, 6): ('square', 'white'), (2, 7): ('triangle', 'black'), (2, 8): ('square', 'white')}]","(3, 9, 5)"
+85.svg,"[{(0, 0): ('square', 'black'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('square', 'black'), (0, 4): ('circle', 'black'), (0, 5): ('square', 'black'), (0, 6): ('square', 'black'), (0, 7): ('circle', 'white'), (0, 8): ('square', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'white'), (1, 3): ('square', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('square', 'black'), (1, 6): ('triangle', 'white'), (1, 7): ('square', 'black'), (1, 8): ('square', 'white'), (2, 0): ('square', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('square', 'black'), (2, 3): ('triangle', 'white'), (2, 4): ('square', 'white'), (2, 5): ('square', 'black'), (2, 6): ('circle', 'white'), (2, 7): ('square', 'black'), (2, 8): ('square', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('square', 'white'), (0, 4): ('triangle', 'black'), (0, 5): ('circle', 'black'), (0, 6): ('square', 'black'), (0, 7): ('triangle', 'black'), (0, 8): ('triangle', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('square', 'white'), (1, 2): ('triangle', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('square', 'black'), (1, 6): ('circle', 'black'), (1, 7): ('circle', 'white'), (1, 8): ('circle', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('square', 'black'), (2, 4): ('circle', 'white'), (2, 5): ('square', 'black'), (2, 6): ('circle', 'black'), (2, 7): ('circle', 'white'), (2, 8): ('triangle', 'black')}, {(0, 0): ('square', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('square', 'black'), (0, 5): ('square', 'black'), (0, 6): ('triangle', 'white'), (0, 7): ('square', 'white'), (0, 8): ('circle', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'white'), (1, 3): ('square', 'black'), (1, 4): ('triangle', 'white'), (1, 5): ('triangle', 'white'), (1, 6): ('square', 'white'), (1, 7): ('triangle', 'black'), (1, 8): ('circle', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('square', 'white'), (2, 2): ('square', 'black'), (2, 3): ('square', 'white'), (2, 4): ('circle', 'white'), (2, 5): ('triangle', 'white'), (2, 6): ('triangle', 'black'), (2, 7): ('square', 'black'), (2, 8): ('triangle', 'black')}, {(0, 0): ('triangle', 'black'), (0, 1): ('square', 'black'), (0, 2): ('square', 'white'), (0, 3): ('triangle', 'white'), (0, 4): ('triangle', 'white'), (0, 5): ('square', 'white'), (0, 6): ('circle', 'white'), (0, 7): ('square', 'white'), (0, 8): ('square', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'black'), (1, 3): ('triangle', 'black'), (1, 4): ('circle', 'black'), (1, 5): ('triangle', 'black'), (1, 6): ('circle', 'white'), (1, 7): ('triangle', 'white'), (1, 8): ('triangle', 'white'), (2, 0): ('square', 'white'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('circle', 'black'), (2, 4): ('circle', 'white'), (2, 5): ('square', 'black'), (2, 6): ('square', 'black'), (2, 7): ('triangle', 'black'), (2, 8): ('triangle', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('triangle', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('circle', 'white'), (0, 6): ('circle', 'white'), (0, 7): ('triangle', 'black'), (0, 8): ('circle', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('square', 'white'), (1, 5): ('circle', 'black'), (1, 6): ('triangle', 'black'), (1, 7): ('square', 'white'), (1, 8): ('circle', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('square', 'black'), (2, 3): ('triangle', 'white'), (2, 4): ('circle', 'black'), (2, 5): ('circle', 'white'), (2, 6): ('square', 'black'), (2, 7): ('circle', 'white'), (2, 8): ('square', 'white')}]","(3, 9, 5)"
+86.svg,"[{(0, 0): ('circle', 'white'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('triangle', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('triangle', 'white'), (0, 6): ('square', 'black'), (0, 7): ('square', 'black'), (0, 8): ('triangle', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('triangle', 'white'), (1, 3): ('square', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('square', 'white'), (1, 6): ('circle', 'white'), (1, 7): ('triangle', 'black'), (1, 8): ('circle', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('circle', 'black'), (2, 3): ('square', 'black'), (2, 4): ('triangle', 'white'), (2, 5): ('circle', 'white'), (2, 6): ('square', 'black'), (2, 7): ('triangle', 'black'), (2, 8): ('triangle', 'white')}, {(0, 0): ('triangle', 'black'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('triangle', 'white'), (0, 6): ('square', 'black'), (0, 7): ('square', 'white'), (0, 8): ('circle', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('triangle', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('triangle', 'black'), (1, 6): ('circle', 'white'), (1, 7): ('circle', 'white'), (1, 8): ('square', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('square', 'black'), (2, 4): ('triangle', 'white'), (2, 5): ('square', 'white'), (2, 6): ('triangle', 'white'), (2, 7): ('square', 'white'), (2, 8): ('triangle', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('square', 'black'), (0, 4): ('square', 'black'), (0, 5): ('square', 'white'), (0, 6): ('square', 'white'), (0, 7): ('circle', 'white'), (0, 8): ('square', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('circle', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('square', 'white'), (1, 5): ('triangle', 'black'), (1, 6): ('triangle', 'white'), (1, 7): ('triangle', 'white'), (1, 8): ('triangle', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'white'), (2, 3): ('square', 'white'), (2, 4): ('circle', 'white'), (2, 5): ('circle', 'white'), (2, 6): ('circle', 'black'), (2, 7): ('square', 'black'), (2, 8): ('triangle', 'black')}, {(0, 0): ('circle', 'black'), (0, 1): ('square', 'black'), (0, 2): ('square', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('square', 'white'), (0, 6): ('triangle', 'black'), (0, 7): ('square', 'black'), (0, 8): ('circle', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('triangle', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('triangle', 'white'), (1, 5): ('triangle', 'black'), (1, 6): ('circle', 'black'), (1, 7): ('triangle', 'white'), (1, 8): ('square', 'white'), (2, 0): ('square', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('triangle', 'black'), (2, 3): ('triangle', 'black'), (2, 4): ('circle', 'black'), (2, 5): ('circle', 'black'), (2, 6): ('triangle', 'black'), (2, 7): ('square', 'white'), (2, 8): ('square', 'black')}, {(0, 0): ('square', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('square', 'white'), (0, 3): ('square', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('triangle', 'white'), (0, 6): ('triangle', 'black'), (0, 7): ('square', 'black'), (0, 8): ('circle', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('triangle', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('square', 'black'), (1, 5): ('circle', 'black'), (1, 6): ('square', 'black'), (1, 7): ('triangle', 'white'), (1, 8): ('square', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('triangle', 'black'), (2, 3): ('triangle', 'black'), (2, 4): ('square', 'black'), (2, 5): ('triangle', 'black'), (2, 6): ('circle', 'white'), (2, 7): ('triangle', 'white'), (2, 8): ('square', 'white')}]","(3, 9, 5)"
+87.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'black'), (0, 3): ('triangle', 'white'), (0, 4): ('circle', 'white'), (0, 5): ('triangle', 'black'), (0, 6): ('square', 'black'), (0, 7): ('circle', 'white'), (0, 8): ('triangle', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('triangle', 'white'), (1, 4): ('square', 'white'), (1, 5): ('triangle', 'white'), (1, 6): ('circle', 'white'), (1, 7): ('circle', 'black'), (1, 8): ('circle', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('triangle', 'white'), (2, 3): ('circle', 'white'), (2, 4): ('circle', 'black'), (2, 5): ('triangle', 'white'), (2, 6): ('triangle', 'black'), (2, 7): ('triangle', 'black'), (2, 8): ('circle', 'white')}, {(0, 0): ('triangle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('circle', 'black'), (0, 5): ('circle', 'white'), (0, 6): ('triangle', 'white'), (0, 7): ('triangle', 'black'), (0, 8): ('triangle', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('triangle', 'black'), (1, 3): ('square', 'black'), (1, 4): ('square', 'black'), (1, 5): ('circle', 'white'), (1, 6): ('circle', 'black'), (1, 7): ('square', 'white'), (1, 8): ('triangle', 'white'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('square', 'black'), (2, 4): ('triangle', 'white'), (2, 5): ('triangle', 'black'), (2, 6): ('triangle', 'white'), (2, 7): ('triangle', 'white'), (2, 8): ('circle', 'black')}, {(0, 0): ('triangle', 'black'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('square', 'black'), (0, 5): ('square', 'black'), (0, 6): ('circle', 'white'), (0, 7): ('circle', 'white'), (0, 8): ('triangle', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('square', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('square', 'black'), (1, 5): ('circle', 'black'), (1, 6): ('circle', 'black'), (1, 7): ('triangle', 'white'), (1, 8): ('square', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('square', 'white'), (2, 4): ('circle', 'black'), (2, 5): ('circle', 'black'), (2, 6): ('square', 'black'), (2, 7): ('square', 'black'), (2, 8): ('square', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('circle', 'black'), (0, 6): ('circle', 'white'), (0, 7): ('square', 'white'), (0, 8): ('square', 'white'), (1, 0): ('triangle', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('circle', 'black'), (1, 3): ('square', 'black'), (1, 4): ('square', 'black'), (1, 5): ('circle', 'black'), (1, 6): ('circle', 'black'), (1, 7): ('circle', 'black'), (1, 8): ('circle', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('square', 'white'), (2, 2): ('square', 'black'), (2, 3): ('square', 'black'), (2, 4): ('triangle', 'white'), (2, 5): ('triangle', 'black'), (2, 6): ('circle', 'black'), (2, 7): ('square', 'white'), (2, 8): ('circle', 'black')}, {(0, 0): ('square', 'white'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('circle', 'black'), (0, 5): ('circle', 'white'), (0, 6): ('square', 'black'), (0, 7): ('triangle', 'white'), (0, 8): ('circle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('circle', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('circle', 'black'), (1, 5): ('circle', 'black'), (1, 6): ('circle', 'black'), (1, 7): ('circle', 'black'), (1, 8): ('circle', 'white'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('square', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('circle', 'white'), (2, 6): ('triangle', 'white'), (2, 7): ('square', 'white'), (2, 8): ('square', 'white')}]","(3, 9, 5)"
+88.svg,"[{(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('square', 'black'), (0, 5): ('square', 'white'), (0, 6): ('triangle', 'white'), (0, 7): ('triangle', 'black'), (0, 8): ('triangle', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'black'), (1, 3): ('circle', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('square', 'black'), (1, 6): ('triangle', 'black'), (1, 7): ('triangle', 'black'), (1, 8): ('square', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('square', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('square', 'black'), (2, 5): ('circle', 'black'), (2, 6): ('triangle', 'black'), (2, 7): ('square', 'white'), (2, 8): ('square', 'black')}, {(0, 0): ('circle', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('circle', 'white'), (0, 3): ('square', 'white'), (0, 4): ('circle', 'white'), (0, 5): ('triangle', 'white'), (0, 6): ('square', 'white'), (0, 7): ('circle', 'white'), (0, 8): ('triangle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'black'), (1, 3): ('circle', 'white'), (1, 4): ('triangle', 'white'), (1, 5): ('triangle', 'white'), (1, 6): ('square', 'white'), (1, 7): ('square', 'black'), (1, 8): ('square', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('circle', 'white'), (2, 3): ('square', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('circle', 'black'), (2, 6): ('triangle', 'white'), (2, 7): ('square', 'white'), (2, 8): ('square', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('square', 'black'), (0, 5): ('square', 'white'), (0, 6): ('square', 'white'), (0, 7): ('triangle', 'black'), (0, 8): ('triangle', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('square', 'black'), (1, 3): ('triangle', 'white'), (1, 4): ('square', 'white'), (1, 5): ('square', 'black'), (1, 6): ('triangle', 'white'), (1, 7): ('circle', 'white'), (1, 8): ('circle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('square', 'black'), (2, 4): ('square', 'black'), (2, 5): ('triangle', 'white'), (2, 6): ('square', 'black'), (2, 7): ('square', 'black'), (2, 8): ('square', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('square', 'white'), (0, 2): ('square', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('square', 'white'), (0, 5): ('square', 'white'), (0, 6): ('circle', 'black'), (0, 7): ('square', 'white'), (0, 8): ('circle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('square', 'black'), (1, 5): ('triangle', 'black'), (1, 6): ('circle', 'white'), (1, 7): ('circle', 'white'), (1, 8): ('triangle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('square', 'white'), (2, 3): ('circle', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('square', 'black'), (2, 6): ('square', 'white'), (2, 7): ('triangle', 'black'), (2, 8): ('square', 'white')}, {(0, 0): ('triangle', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('square', 'black'), (0, 3): ('circle', 'white'), (0, 4): ('triangle', 'white'), (0, 5): ('triangle', 'black'), (0, 6): ('triangle', 'black'), (0, 7): ('triangle', 'white'), (0, 8): ('square', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('square', 'black'), (1, 6): ('triangle', 'white'), (1, 7): ('triangle', 'white'), (1, 8): ('square', 'black'), (2, 0): ('square', 'white'), (2, 1): ('square', 'black'), (2, 2): ('square', 'white'), (2, 3): ('circle', 'white'), (2, 4): ('circle', 'white'), (2, 5): ('circle', 'black'), (2, 6): ('triangle', 'white'), (2, 7): ('triangle', 'black'), (2, 8): ('circle', 'black')}]","(3, 9, 5)"
+89.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('triangle', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('square', 'white'), (0, 6): ('circle', 'black'), (0, 7): ('circle', 'black'), (0, 8): ('square', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('square', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('circle', 'black'), (1, 5): ('circle', 'white'), (1, 6): ('circle', 'black'), (1, 7): ('triangle', 'white'), (1, 8): ('square', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('square', 'white'), (2, 2): ('square', 'black'), (2, 3): ('square', 'white'), (2, 4): ('circle', 'black'), (2, 5): ('circle', 'white'), (2, 6): ('square', 'white'), (2, 7): ('triangle', 'white'), (2, 8): ('square', 'black')}, {(0, 0): ('circle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('square', 'white'), (0, 3): ('circle', 'white'), (0, 4): ('triangle', 'white'), (0, 5): ('square', 'white'), (0, 6): ('circle', 'black'), (0, 7): ('square', 'black'), (0, 8): ('circle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('circle', 'black'), (1, 3): ('square', 'white'), (1, 4): ('square', 'black'), (1, 5): ('square', 'white'), (1, 6): ('circle', 'black'), (1, 7): ('triangle', 'black'), (1, 8): ('triangle', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('square', 'black'), (2, 2): ('square', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('square', 'black'), (2, 5): ('circle', 'white'), (2, 6): ('triangle', 'white'), (2, 7): ('circle', 'white'), (2, 8): ('triangle', 'black')}, {(0, 0): ('square', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('triangle', 'white'), (0, 6): ('triangle', 'black'), (0, 7): ('circle', 'black'), (0, 8): ('square', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'black'), (1, 3): ('triangle', 'white'), (1, 4): ('triangle', 'black'), (1, 5): ('square', 'black'), (1, 6): ('square', 'white'), (1, 7): ('circle', 'black'), (1, 8): ('triangle', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('triangle', 'white'), (2, 4): ('circle', 'white'), (2, 5): ('circle', 'black'), (2, 6): ('square', 'white'), (2, 7): ('square', 'white'), (2, 8): ('circle', 'black')}, {(0, 0): ('square', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('square', 'white'), (0, 3): ('circle', 'white'), (0, 4): ('triangle', 'black'), (0, 5): ('circle', 'black'), (0, 6): ('square', 'white'), (0, 7): ('circle', 'black'), (0, 8): ('circle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'black'), (1, 3): ('square', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('triangle', 'black'), (1, 6): ('triangle', 'black'), (1, 7): ('square', 'black'), (1, 8): ('square', 'white'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'white'), (2, 3): ('square', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('triangle', 'white'), (2, 6): ('triangle', 'white'), (2, 7): ('circle', 'black'), (2, 8): ('circle', 'white')}, {(0, 0): ('square', 'black'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('square', 'white'), (0, 4): ('circle', 'black'), (0, 5): ('circle', 'white'), (0, 6): ('triangle', 'white'), (0, 7): ('circle', 'white'), (0, 8): ('circle', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('square', 'black'), (1, 3): ('square', 'black'), (1, 4): ('triangle', 'white'), (1, 5): ('triangle', 'black'), (1, 6): ('circle', 'white'), (1, 7): ('square', 'black'), (1, 8): ('triangle', 'black'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'black'), (2, 3): ('triangle', 'black'), (2, 4): ('triangle', 'white'), (2, 5): ('square', 'black'), (2, 6): ('square', 'black'), (2, 7): ('circle', 'white'), (2, 8): ('circle', 'black')}]","(3, 9, 5)"
+90.svg,"[{(0, 0): ('square', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('square', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('square', 'white'), (3, 0): ('circle', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('circle', 'black'), (4, 0): ('square', 'white'), (4, 1): ('square', 'black'), (4, 2): ('triangle', 'black'), (5, 0): ('circle', 'black'), (5, 1): ('triangle', 'white'), (5, 2): ('square', 'white')}]","(6, 3, 1)"
+91.svg,"[{(0, 0): ('triangle', 'white'), (0, 1): ('square', 'white'), (0, 2): ('triangle', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('triangle', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('circle', 'white'), (3, 0): ('circle', 'white'), (3, 1): ('triangle', 'black'), (3, 2): ('square', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('square', 'white'), (4, 2): ('circle', 'white'), (5, 0): ('square', 'white'), (5, 1): ('triangle', 'white'), (5, 2): ('circle', 'black')}]","(6, 3, 1)"
+92.svg,"[{(0, 0): ('circle', 'black'), (0, 1): ('square', 'white'), (0, 2): ('triangle', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('triangle', 'white'), (2, 0): ('square', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('circle', 'white'), (3, 0): ('circle', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('triangle', 'black'), (4, 0): ('square', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('triangle', 'white'), (5, 0): ('square', 'black'), (5, 1): ('square', 'black'), (5, 2): ('circle', 'white')}]","(6, 3, 1)"
+93.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('square', 'black'), (1, 0): ('square', 'black'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('square', 'white'), (3, 0): ('triangle', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('square', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('square', 'black'), (4, 2): ('circle', 'black'), (5, 0): ('triangle', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('square', 'white')}]","(6, 3, 1)"
+94.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('triangle', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('circle', 'black'), (3, 0): ('circle', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('triangle', 'white'), (4, 0): ('circle', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('square', 'black'), (5, 0): ('circle', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('circle', 'white')}]","(6, 3, 1)"
+95.svg,"[{(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('square', 'black'), (1, 0): ('square', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'black'), (2, 0): ('square', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('circle', 'white'), (3, 0): ('circle', 'white'), (3, 1): ('circle', 'black'), (3, 2): ('square', 'black'), (4, 0): ('square', 'black'), (4, 1): ('square', 'white'), (4, 2): ('circle', 'white'), (5, 0): ('square', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('triangle', 'white')}]","(6, 3, 1)"
+96.svg,"[{(0, 0): ('triangle', 'black'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('square', 'black'), (1, 2): ('triangle', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'black'), (3, 0): ('circle', 'black'), (3, 1): ('triangle', 'black'), (3, 2): ('circle', 'black'), (4, 0): ('square', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('square', 'white'), (5, 0): ('square', 'black'), (5, 1): ('triangle', 'black'), (5, 2): ('triangle', 'black')}]","(6, 3, 1)"
+97.svg,"[{(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('square', 'white'), (1, 0): ('square', 'white'), (1, 1): ('square', 'black'), (1, 2): ('triangle', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('circle', 'black'), (3, 0): ('square', 'white'), (3, 1): ('square', 'black'), (3, 2): ('square', 'white'), (4, 0): ('square', 'black'), (4, 1): ('triangle', 'black'), (4, 2): ('triangle', 'black'), (5, 0): ('square', 'black'), (5, 1): ('triangle', 'black'), (5, 2): ('square', 'white')}]","(6, 3, 1)"
+98.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('square', 'black'), (0, 2): ('circle', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('square', 'black'), (2, 2): ('triangle', 'white'), (3, 0): ('circle', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('triangle', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('triangle', 'white'), (4, 2): ('triangle', 'black'), (5, 0): ('square', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('circle', 'white')}]","(6, 3, 1)"
+99.svg,"[{(0, 0): ('triangle', 'white'), (0, 1): ('square', 'black'), (0, 2): ('circle', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('square', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'black'), (3, 0): ('square', 'white'), (3, 1): ('square', 'black'), (3, 2): ('circle', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('square', 'white'), (4, 2): ('circle', 'white'), (5, 0): ('circle', 'white'), (5, 1): ('triangle', 'black'), (5, 2): ('circle', 'black')}]","(6, 3, 1)"
+100.svg,"[{(0, 0): ('circle', 'black'), (0, 1): ('square', 'white'), (0, 2): ('triangle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('square', 'black'), (1, 2): ('circle', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'black'), (3, 0): ('square', 'black'), (3, 1): ('square', 'black'), (3, 2): ('circle', 'white'), (4, 0): ('circle', 'white'), (4, 1): ('circle', 'black'), (4, 2): ('circle', 'black'), (5, 0): ('triangle', 'white'), (5, 1): ('square', 'white'), (5, 2): ('square', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'black'), (2, 0): ('square', 'white'), (2, 1): ('square', 'black'), (2, 2): ('square', 'white'), (3, 0): ('triangle', 'white'), (3, 1): ('circle', 'white'), (3, 2): ('triangle', 'white'), (4, 0): ('circle', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('triangle', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('square', 'white'), (5, 2): ('triangle', 'black')}, {(0, 0): ('triangle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('triangle', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('circle', 'white'), (3, 0): ('triangle', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('circle', 'white'), (4, 0): ('circle', 'white'), (4, 1): ('circle', 'black'), (4, 2): ('triangle', 'black'), (5, 0): ('circle', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('triangle', 'black')}]","(6, 3, 3)"
+101.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('triangle', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('triangle', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('square', 'black'), (3, 0): ('circle', 'white'), (3, 1): ('square', 'white'), (3, 2): ('triangle', 'white'), (4, 0): ('square', 'black'), (4, 1): ('square', 'black'), (4, 2): ('circle', 'black'), (5, 0): ('circle', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('triangle', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('triangle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'black'), (3, 0): ('circle', 'white'), (3, 1): ('square', 'black'), (3, 2): ('square', 'black'), (4, 0): ('square', 'white'), (4, 1): ('circle', 'black'), (4, 2): ('circle', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('square', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'white'), (1, 0): ('triangle', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'white'), (3, 0): ('square', 'white'), (3, 1): ('square', 'white'), (3, 2): ('circle', 'black'), (4, 0): ('square', 'black'), (4, 1): ('square', 'white'), (4, 2): ('square', 'white'), (5, 0): ('triangle', 'white'), (5, 1): ('square', 'black'), (5, 2): ('triangle', 'black')}]","(6, 3, 3)"
+102.svg,"[{(0, 0): ('triangle', 'black'), (0, 1): ('square', 'black'), (0, 2): ('square', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('square', 'black'), (1, 2): ('triangle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('square', 'black'), (3, 0): ('square', 'white'), (3, 1): ('square', 'black'), (3, 2): ('square', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('circle', 'white'), (4, 2): ('square', 'black'), (5, 0): ('circle', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('triangle', 'black')}, {(0, 0): ('circle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('square', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('square', 'black'), (3, 0): ('square', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('square', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('circle', 'black'), (5, 0): ('square', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('triangle', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('square', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('circle', 'white'), (4, 0): ('square', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('square', 'black'), (5, 0): ('triangle', 'white'), (5, 1): ('square', 'black'), (5, 2): ('square', 'black')}]","(6, 3, 3)"
+103.svg,"[{(0, 0): ('circle', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('circle', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'black'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('square', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('circle', 'black'), (4, 0): ('circle', 'white'), (4, 1): ('square', 'white'), (4, 2): ('square', 'black'), (5, 0): ('square', 'black'), (5, 1): ('square', 'black'), (5, 2): ('square', 'white')}, {(0, 0): ('square', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'black'), (3, 0): ('square', 'white'), (3, 1): ('square', 'black'), (3, 2): ('circle', 'white'), (4, 0): ('circle', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('circle', 'white'), (5, 0): ('circle', 'white'), (5, 1): ('square', 'black'), (5, 2): ('circle', 'white')}, {(0, 0): ('triangle', 'black'), (0, 1): ('square', 'black'), (0, 2): ('square', 'white'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('square', 'white'), (3, 0): ('square', 'white'), (3, 1): ('circle', 'black'), (3, 2): ('triangle', 'white'), (4, 0): ('circle', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('circle', 'white'), (5, 0): ('triangle', 'white'), (5, 1): ('triangle', 'white'), (5, 2): ('circle', 'black')}]","(6, 3, 3)"
+104.svg,"[{(0, 0): ('circle', 'white'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('triangle', 'black'), (2, 0): ('square', 'white'), (2, 1): ('square', 'black'), (2, 2): ('triangle', 'black'), (3, 0): ('square', 'white'), (3, 1): ('triangle', 'white'), (3, 2): ('triangle', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('circle', 'white'), (4, 2): ('circle', 'white'), (5, 0): ('circle', 'white'), (5, 1): ('triangle', 'black'), (5, 2): ('circle', 'white')}, {(0, 0): ('circle', 'black'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('square', 'white'), (3, 0): ('triangle', 'black'), (3, 1): ('square', 'white'), (3, 2): ('square', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('triangle', 'black'), (4, 2): ('triangle', 'black'), (5, 0): ('triangle', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('circle', 'black')}, {(0, 0): ('square', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('triangle', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'black'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'black'), (3, 0): ('circle', 'white'), (3, 1): ('square', 'black'), (3, 2): ('circle', 'black'), (4, 0): ('square', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('square', 'black'), (5, 0): ('square', 'white'), (5, 1): ('square', 'white'), (5, 2): ('square', 'black')}]","(6, 3, 3)"
+105.svg,"[{(0, 0): ('triangle', 'white'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('square', 'black'), (3, 0): ('circle', 'white'), (3, 1): ('circle', 'black'), (3, 2): ('square', 'black'), (4, 0): ('circle', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('triangle', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('square', 'black'), (5, 2): ('triangle', 'white')}, {(0, 0): ('triangle', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('square', 'black'), (1, 0): ('square', 'black'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('triangle', 'black'), (3, 0): ('circle', 'white'), (3, 1): ('square', 'white'), (3, 2): ('square', 'white'), (4, 0): ('square', 'white'), (4, 1): ('square', 'black'), (4, 2): ('circle', 'black'), (5, 0): ('circle', 'white'), (5, 1): ('square', 'white'), (5, 2): ('triangle', 'black')}, {(0, 0): ('square', 'white'), (0, 1): ('square', 'black'), (0, 2): ('square', 'white'), (1, 0): ('triangle', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('circle', 'white'), (3, 0): ('circle', 'white'), (3, 1): ('triangle', 'black'), (3, 2): ('square', 'white'), (4, 0): ('circle', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('square', 'white'), (5, 0): ('square', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('square', 'white')}]","(6, 3, 3)"
+106.svg,"[{(0, 0): ('triangle', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('triangle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('square', 'black'), (1, 2): ('square', 'white'), (2, 0): ('square', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('square', 'white'), (3, 0): ('triangle', 'black'), (3, 1): ('square', 'black'), (3, 2): ('triangle', 'white'), (4, 0): ('square', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('triangle', 'black'), (5, 0): ('square', 'white'), (5, 1): ('square', 'black'), (5, 2): ('square', 'white')}, {(0, 0): ('triangle', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('triangle', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('square', 'black'), (1, 2): ('square', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'white'), (3, 0): ('circle', 'white'), (3, 1): ('circle', 'black'), (3, 2): ('square', 'white'), (4, 0): ('circle', 'black'), (4, 1): ('square', 'black'), (4, 2): ('circle', 'black'), (5, 0): ('triangle', 'white'), (5, 1): ('triangle', 'white'), (5, 2): ('triangle', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('square', 'white'), (1, 2): ('triangle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('square', 'white'), (2, 2): ('square', 'black'), (3, 0): ('square', 'white'), (3, 1): ('circle', 'black'), (3, 2): ('square', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('triangle', 'black'), (4, 2): ('square', 'white'), (5, 0): ('square', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('triangle', 'black')}]","(6, 3, 3)"
+107.svg,"[{(0, 0): ('square', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('triangle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'black'), (3, 0): ('triangle', 'white'), (3, 1): ('triangle', 'black'), (3, 2): ('triangle', 'white'), (4, 0): ('triangle', 'white'), (4, 1): ('triangle', 'black'), (4, 2): ('triangle', 'black'), (5, 0): ('circle', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('triangle', 'white')}, {(0, 0): ('triangle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('square', 'white'), (1, 2): ('triangle', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('square', 'black'), (3, 0): ('square', 'black'), (3, 1): ('triangle', 'black'), (3, 2): ('square', 'black'), (4, 0): ('triangle', 'white'), (4, 1): ('square', 'black'), (4, 2): ('square', 'black'), (5, 0): ('triangle', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('square', 'white')}, {(0, 0): ('square', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('square', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('square', 'black'), (1, 2): ('triangle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'white'), (3, 0): ('circle', 'black'), (3, 1): ('square', 'white'), (3, 2): ('square', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('square', 'white'), (4, 2): ('triangle', 'white'), (5, 0): ('square', 'black'), (5, 1): ('triangle', 'black'), (5, 2): ('triangle', 'white')}]","(6, 3, 3)"
+108.svg,"[{(0, 0): ('square', 'black'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('square', 'black'), (1, 2): ('square', 'black'), (2, 0): ('square', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'black'), (3, 0): ('circle', 'white'), (3, 1): ('square', 'white'), (3, 2): ('square', 'white'), (4, 0): ('circle', 'black'), (4, 1): ('triangle', 'white'), (4, 2): ('circle', 'black'), (5, 0): ('triangle', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('square', 'black')}, {(0, 0): ('square', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('triangle', 'white'), (1, 0): ('triangle', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('square', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'black'), (3, 0): ('circle', 'black'), (3, 1): ('square', 'white'), (3, 2): ('square', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('square', 'black'), (4, 2): ('triangle', 'white'), (5, 0): ('square', 'black'), (5, 1): ('square', 'black'), (5, 2): ('circle', 'black')}, {(0, 0): ('circle', 'black'), (0, 1): ('square', 'white'), (0, 2): ('square', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('square', 'black'), (2, 0): ('square', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'black'), (3, 0): ('square', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('triangle', 'white'), (4, 0): ('square', 'black'), (4, 1): ('circle', 'white'), (4, 2): ('triangle', 'white'), (5, 0): ('square', 'white'), (5, 1): ('triangle', 'white'), (5, 2): ('triangle', 'white')}]","(6, 3, 3)"
+109.svg,"[{(0, 0): ('triangle', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('circle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('square', 'white'), (1, 2): ('square', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'white'), (3, 0): ('triangle', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('triangle', 'white'), (4, 0): ('square', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('circle', 'white'), (5, 0): ('square', 'white'), (5, 1): ('triangle', 'white'), (5, 2): ('square', 'black')}, {(0, 0): ('triangle', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('square', 'white'), (1, 0): ('triangle', 'white'), (1, 1): ('square', 'black'), (1, 2): ('square', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('triangle', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('square', 'black'), (3, 2): ('square', 'white'), (4, 0): ('square', 'white'), (4, 1): ('triangle', 'black'), (4, 2): ('triangle', 'black'), (5, 0): ('square', 'white'), (5, 1): ('square', 'white'), (5, 2): ('triangle', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('circle', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'white'), (2, 0): ('square', 'black'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'white'), (3, 0): ('square', 'white'), (3, 1): ('circle', 'black'), (3, 2): ('circle', 'black'), (4, 0): ('square', 'black'), (4, 1): ('triangle', 'white'), (4, 2): ('circle', 'black'), (5, 0): ('circle', 'black'), (5, 1): ('triangle', 'black'), (5, 2): ('circle', 'black')}]","(6, 3, 3)"
+110.svg,"[{(0, 0): ('triangle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('square', 'white'), (1, 2): ('square', 'black'), (2, 0): ('square', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('circle', 'white'), (3, 0): ('triangle', 'black'), (3, 1): ('circle', 'white'), (3, 2): ('triangle', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('circle', 'black'), (5, 0): ('triangle', 'white'), (5, 1): ('square', 'black'), (5, 2): ('square', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('circle', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('square', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'black'), (3, 0): ('square', 'black'), (3, 1): ('square', 'white'), (3, 2): ('circle', 'black'), (4, 0): ('triangle', 'white'), (4, 1): ('square', 'white'), (4, 2): ('triangle', 'black'), (5, 0): ('circle', 'black'), (5, 1): ('triangle', 'white'), (5, 2): ('circle', 'black')}, {(0, 0): ('triangle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('square', 'white'), (1, 0): ('square', 'black'), (1, 1): ('square', 'black'), (1, 2): ('circle', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'black'), (3, 0): ('square', 'black'), (3, 1): ('square', 'white'), (3, 2): ('triangle', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('triangle', 'black'), (4, 2): ('circle', 'black'), (5, 0): ('triangle', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('square', 'black')}, {(0, 0): ('circle', 'black'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('triangle', 'black'), (3, 0): ('circle', 'black'), (3, 1): ('circle', 'white'), (3, 2): ('triangle', 'white'), (4, 0): ('square', 'black'), (4, 1): ('square', 'white'), (4, 2): ('triangle', 'black'), (5, 0): ('circle', 'white'), (5, 1): ('triangle', 'white'), (5, 2): ('triangle', 'black')}, {(0, 0): ('circle', 'black'), (0, 1): ('square', 'black'), (0, 2): ('circle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('square', 'black'), (1, 2): ('triangle', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('circle', 'black'), (3, 0): ('square', 'black'), (3, 1): ('triangle', 'black'), (3, 2): ('square', 'black'), (4, 0): ('square', 'white'), (4, 1): ('triangle', 'black'), (4, 2): ('square', 'black'), (5, 0): ('circle', 'white'), (5, 1): ('triangle', 'white'), (5, 2): ('circle', 'black')}]","(6, 3, 5)"
+111.svg,"[{(0, 0): ('circle', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('circle', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('square', 'black'), (1, 2): ('square', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'white'), (3, 0): ('circle', 'white'), (3, 1): ('circle', 'black'), (3, 2): ('square', 'black'), (4, 0): ('square', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('circle', 'black'), (5, 0): ('square', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('square', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('triangle', 'black'), (3, 0): ('circle', 'black'), (3, 1): ('triangle', 'black'), (3, 2): ('triangle', 'black'), (4, 0): ('triangle', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('circle', 'black'), (5, 0): ('circle', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('circle', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('square', 'white'), (1, 0): ('square', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('square', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'white'), (3, 0): ('triangle', 'black'), (3, 1): ('square', 'black'), (3, 2): ('triangle', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('triangle', 'black'), (4, 2): ('square', 'white'), (5, 0): ('triangle', 'black'), (5, 1): ('square', 'white'), (5, 2): ('circle', 'white')}, {(0, 0): ('square', 'black'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('square', 'white'), (1, 2): ('square', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('square', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('square', 'white'), (3, 2): ('square', 'black'), (4, 0): ('square', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('triangle', 'white'), (5, 0): ('circle', 'white'), (5, 1): ('triangle', 'black'), (5, 2): ('triangle', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('triangle', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('circle', 'white'), (2, 0): ('square', 'white'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'white'), (3, 0): ('square', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('triangle', 'black'), (4, 0): ('square', 'white'), (4, 1): ('circle', 'black'), (4, 2): ('triangle', 'white'), (5, 0): ('square', 'black'), (5, 1): ('triangle', 'black'), (5, 2): ('square', 'black')}]","(6, 3, 5)"
+112.svg,"[{(0, 0): ('square', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('square', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('triangle', 'white'), (3, 0): ('square', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('square', 'white'), (4, 0): ('square', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('square', 'white'), (5, 0): ('circle', 'white'), (5, 1): ('square', 'white'), (5, 2): ('square', 'black')}, {(0, 0): ('square', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('circle', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('triangle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('circle', 'white'), (3, 0): ('square', 'white'), (3, 1): ('triangle', 'white'), (3, 2): ('triangle', 'white'), (4, 0): ('square', 'white'), (4, 1): ('square', 'white'), (4, 2): ('square', 'black'), (5, 0): ('triangle', 'black'), (5, 1): ('triangle', 'white'), (5, 2): ('circle', 'white')}, {(0, 0): ('triangle', 'black'), (0, 1): ('square', 'black'), (0, 2): ('square', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('square', 'black'), (1, 2): ('square', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'black'), (3, 0): ('square', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('circle', 'white'), (4, 0): ('square', 'white'), (4, 1): ('triangle', 'black'), (4, 2): ('triangle', 'black'), (5, 0): ('circle', 'white'), (5, 1): ('square', 'white'), (5, 2): ('square', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('square', 'white'), (2, 0): ('square', 'white'), (2, 1): ('square', 'white'), (2, 2): ('square', 'white'), (3, 0): ('circle', 'white'), (3, 1): ('square', 'black'), (3, 2): ('square', 'white'), (4, 0): ('triangle', 'white'), (4, 1): ('triangle', 'black'), (4, 2): ('circle', 'white'), (5, 0): ('square', 'black'), (5, 1): ('triangle', 'black'), (5, 2): ('triangle', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('triangle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('square', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'white'), (3, 0): ('square', 'white'), (3, 1): ('triangle', 'white'), (3, 2): ('triangle', 'black'), (4, 0): ('square', 'white'), (4, 1): ('triangle', 'black'), (4, 2): ('circle', 'black'), (5, 0): ('circle', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('square', 'black')}]","(6, 3, 5)"
+113.svg,"[{(0, 0): ('triangle', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('square', 'black'), (1, 2): ('triangle', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'black'), (3, 0): ('circle', 'black'), (3, 1): ('square', 'white'), (3, 2): ('circle', 'white'), (4, 0): ('circle', 'white'), (4, 1): ('square', 'white'), (4, 2): ('square', 'black'), (5, 0): ('square', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('triangle', 'black')}, {(0, 0): ('square', 'black'), (0, 1): ('square', 'white'), (0, 2): ('square', 'black'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'white'), (3, 0): ('square', 'black'), (3, 1): ('triangle', 'black'), (3, 2): ('square', 'black'), (4, 0): ('square', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('triangle', 'white'), (5, 0): ('square', 'black'), (5, 1): ('square', 'black'), (5, 2): ('circle', 'black')}, {(0, 0): ('square', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('square', 'black'), (1, 2): ('square', 'white'), (2, 0): ('square', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('circle', 'white'), (3, 0): ('triangle', 'black'), (3, 1): ('triangle', 'black'), (3, 2): ('triangle', 'black'), (4, 0): ('square', 'black'), (4, 1): ('square', 'white'), (4, 2): ('square', 'white'), (5, 0): ('triangle', 'black'), (5, 1): ('triangle', 'black'), (5, 2): ('triangle', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'white'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'black'), (3, 0): ('square', 'black'), (3, 1): ('square', 'white'), (3, 2): ('triangle', 'black'), (4, 0): ('square', 'black'), (4, 1): ('square', 'white'), (4, 2): ('triangle', 'white'), (5, 0): ('square', 'black'), (5, 1): ('triangle', 'black'), (5, 2): ('triangle', 'white')}, {(0, 0): ('triangle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'black'), (3, 0): ('square', 'black'), (3, 1): ('triangle', 'black'), (3, 2): ('circle', 'white'), (4, 0): ('circle', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('triangle', 'black'), (5, 0): ('square', 'white'), (5, 1): ('square', 'white'), (5, 2): ('triangle', 'black')}]","(6, 3, 5)"
+114.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('circle', 'white'), (1, 0): ('triangle', 'white'), (1, 1): ('square', 'black'), (1, 2): ('square', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('square', 'white'), (3, 0): ('triangle', 'white'), (3, 1): ('square', 'black'), (3, 2): ('square', 'black'), (4, 0): ('square', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('square', 'white'), (5, 0): ('square', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('square', 'black')}, {(0, 0): ('square', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('circle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('square', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('square', 'black'), (3, 0): ('circle', 'black'), (3, 1): ('square', 'black'), (3, 2): ('triangle', 'black'), (4, 0): ('triangle', 'white'), (4, 1): ('triangle', 'black'), (4, 2): ('triangle', 'black'), (5, 0): ('circle', 'black'), (5, 1): ('square', 'white'), (5, 2): ('square', 'black')}, {(0, 0): ('square', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('circle', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'white'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('triangle', 'white'), (3, 0): ('triangle', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('triangle', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('circle', 'white'), (4, 2): ('square', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('square', 'white'), (5, 2): ('circle', 'black')}, {(0, 0): ('circle', 'white'), (0, 1): ('square', 'black'), (0, 2): ('square', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('triangle', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('square', 'black'), (3, 0): ('circle', 'white'), (3, 1): ('square', 'black'), (3, 2): ('circle', 'white'), (4, 0): ('square', 'white'), (4, 1): ('square', 'white'), (4, 2): ('triangle', 'black'), (5, 0): ('triangle', 'white'), (5, 1): ('square', 'white'), (5, 2): ('triangle', 'black')}, {(0, 0): ('circle', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('circle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('circle', 'black'), (3, 0): ('square', 'black'), (3, 1): ('circle', 'white'), (3, 2): ('triangle', 'white'), (4, 0): ('circle', 'black'), (4, 1): ('circle', 'white'), (4, 2): ('circle', 'black'), (5, 0): ('square', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('square', 'white')}]","(6, 3, 5)"
+115.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('square', 'white'), (1, 0): ('square', 'white'), (1, 1): ('square', 'black'), (1, 2): ('triangle', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('square', 'white'), (2, 2): ('circle', 'white'), (3, 0): ('square', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('square', 'black'), (4, 0): ('square', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('circle', 'black'), (5, 0): ('square', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('circle', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('square', 'black'), (0, 2): ('square', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'black'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('square', 'white'), (3, 0): ('square', 'white'), (3, 1): ('circle', 'black'), (3, 2): ('square', 'black'), (4, 0): ('triangle', 'white'), (4, 1): ('triangle', 'black'), (4, 2): ('square', 'white'), (5, 0): ('square', 'black'), (5, 1): ('square', 'black'), (5, 2): ('triangle', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('square', 'white'), (0, 2): ('triangle', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('triangle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'black'), (3, 0): ('circle', 'white'), (3, 1): ('triangle', 'white'), (3, 2): ('square', 'white'), (4, 0): ('square', 'white'), (4, 1): ('triangle', 'black'), (4, 2): ('circle', 'white'), (5, 0): ('circle', 'white'), (5, 1): ('triangle', 'white'), (5, 2): ('circle', 'white')}, {(0, 0): ('square', 'black'), (0, 1): ('square', 'black'), (0, 2): ('square', 'white'), (1, 0): ('triangle', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('circle', 'white'), (3, 0): ('square', 'white'), (3, 1): ('square', 'black'), (3, 2): ('square', 'black'), (4, 0): ('square', 'white'), (4, 1): ('square', 'black'), (4, 2): ('triangle', 'white'), (5, 0): ('triangle', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('triangle', 'black')}, {(0, 0): ('square', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('square', 'black'), (1, 0): ('square', 'white'), (1, 1): ('square', 'white'), (1, 2): ('square', 'black'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('square', 'white'), (3, 0): ('triangle', 'black'), (3, 1): ('square', 'black'), (3, 2): ('square', 'white'), (4, 0): ('circle', 'black'), (4, 1): ('square', 'white'), (4, 2): ('circle', 'black'), (5, 0): ('circle', 'white'), (5, 1): ('square', 'white'), (5, 2): ('triangle', 'white')}]","(6, 3, 5)"
+116.svg,"[{(0, 0): ('circle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('triangle', 'white'), (3, 0): ('triangle', 'white'), (3, 1): ('circle', 'white'), (3, 2): ('triangle', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('triangle', 'white'), (4, 2): ('square', 'white'), (5, 0): ('circle', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('square', 'white')}, {(0, 0): ('circle', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('triangle', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('circle', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'black'), (2, 2): ('triangle', 'white'), (3, 0): ('triangle', 'white'), (3, 1): ('triangle', 'black'), (3, 2): ('square', 'white'), (4, 0): ('circle', 'black'), (4, 1): ('triangle', 'white'), (4, 2): ('triangle', 'black'), (5, 0): ('circle', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('triangle', 'black')}, {(0, 0): ('circle', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('triangle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('square', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('square', 'black'), (2, 2): ('triangle', 'black'), (3, 0): ('triangle', 'white'), (3, 1): ('circle', 'white'), (3, 2): ('square', 'white'), (4, 0): ('circle', 'black'), (4, 1): ('triangle', 'black'), (4, 2): ('circle', 'black'), (5, 0): ('circle', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('circle', 'black')}, {(0, 0): ('circle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('circle', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('triangle', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('square', 'black'), (3, 0): ('square', 'white'), (3, 1): ('square', 'black'), (3, 2): ('triangle', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('triangle', 'black'), (4, 2): ('square', 'white'), (5, 0): ('square', 'white'), (5, 1): ('square', 'black'), (5, 2): ('triangle', 'white')}, {(0, 0): ('square', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('circle', 'white'), (1, 0): ('triangle', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'white'), (3, 0): ('circle', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('triangle', 'white'), (4, 0): ('square', 'white'), (4, 1): ('square', 'black'), (4, 2): ('circle', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('square', 'white')}]","(6, 3, 5)"
+117.svg,"[{(0, 0): ('circle', 'black'), (0, 1): ('square', 'white'), (0, 2): ('square', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('square', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('square', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('circle', 'white'), (4, 0): ('triangle', 'white'), (4, 1): ('circle', 'black'), (4, 2): ('square', 'white'), (5, 0): ('square', 'white'), (5, 1): ('triangle', 'white'), (5, 2): ('square', 'white')}, {(0, 0): ('circle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'black'), (2, 0): ('square', 'white'), (2, 1): ('square', 'white'), (2, 2): ('circle', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('triangle', 'black'), (3, 2): ('circle', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('square', 'white'), (5, 0): ('circle', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('triangle', 'black')}, {(0, 0): ('square', 'black'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('square', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('square', 'black'), (3, 0): ('square', 'white'), (3, 1): ('triangle', 'black'), (3, 2): ('triangle', 'white'), (4, 0): ('triangle', 'white'), (4, 1): ('triangle', 'black'), (4, 2): ('square', 'black'), (5, 0): ('triangle', 'white'), (5, 1): ('triangle', 'black'), (5, 2): ('square', 'black')}, {(0, 0): ('triangle', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('square', 'black'), (1, 0): ('square', 'black'), (1, 1): ('square', 'black'), (1, 2): ('circle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'white'), (3, 0): ('circle', 'white'), (3, 1): ('triangle', 'white'), (3, 2): ('square', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('square', 'white'), (4, 2): ('circle', 'white'), (5, 0): ('square', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('square', 'white')}, {(0, 0): ('circle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('circle', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'black'), (3, 0): ('circle', 'white'), (3, 1): ('triangle', 'white'), (3, 2): ('triangle', 'black'), (4, 0): ('triangle', 'white'), (4, 1): ('square', 'white'), (4, 2): ('square', 'black'), (5, 0): ('square', 'black'), (5, 1): ('square', 'white'), (5, 2): ('square', 'white')}]","(6, 3, 5)"
+118.svg,"[{(0, 0): ('triangle', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('square', 'white'), (1, 0): ('square', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'white'), (3, 0): ('square', 'white'), (3, 1): ('triangle', 'black'), (3, 2): ('triangle', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('square', 'black'), (4, 2): ('triangle', 'black'), (5, 0): ('circle', 'white'), (5, 1): ('triangle', 'black'), (5, 2): ('square', 'black')}, {(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('circle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('circle', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('square', 'black'), (3, 2): ('circle', 'black'), (4, 0): ('square', 'white'), (4, 1): ('square', 'black'), (4, 2): ('square', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('square', 'black'), (5, 2): ('circle', 'white')}, {(0, 0): ('circle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('square', 'white'), (3, 0): ('square', 'white'), (3, 1): ('circle', 'black'), (3, 2): ('circle', 'black'), (4, 0): ('circle', 'white'), (4, 1): ('square', 'black'), (4, 2): ('triangle', 'white'), (5, 0): ('square', 'white'), (5, 1): ('triangle', 'white'), (5, 2): ('triangle', 'white')}, {(0, 0): ('triangle', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('circle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'white'), (2, 0): ('square', 'black'), (2, 1): ('square', 'white'), (2, 2): ('circle', 'black'), (3, 0): ('circle', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('triangle', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('triangle', 'white'), (5, 0): ('circle', 'white'), (5, 1): ('square', 'black'), (5, 2): ('circle', 'white')}, {(0, 0): ('circle', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('circle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('square', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('circle', 'black'), (3, 0): ('triangle', 'white'), (3, 1): ('triangle', 'white'), (3, 2): ('circle', 'black'), (4, 0): ('square', 'white'), (4, 1): ('square', 'black'), (4, 2): ('circle', 'black'), (5, 0): ('square', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('circle', 'white')}]","(6, 3, 5)"
+119.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('square', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('square', 'white'), (1, 2): ('square', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('triangle', 'black'), (3, 2): ('square', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('triangle', 'white'), (4, 2): ('circle', 'white'), (5, 0): ('square', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('circle', 'black')}, {(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('triangle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('square', 'black'), (3, 0): ('circle', 'black'), (3, 1): ('square', 'black'), (3, 2): ('triangle', 'white'), (4, 0): ('triangle', 'white'), (4, 1): ('square', 'white'), (4, 2): ('triangle', 'white'), (5, 0): ('circle', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('circle', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('circle', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('square', 'white'), (1, 2): ('triangle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('square', 'white'), (3, 0): ('triangle', 'black'), (3, 1): ('square', 'black'), (3, 2): ('circle', 'white'), (4, 0): ('triangle', 'white'), (4, 1): ('square', 'white'), (4, 2): ('triangle', 'white'), (5, 0): ('square', 'white'), (5, 1): ('triangle', 'white'), (5, 2): ('square', 'black')}, {(0, 0): ('square', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'black'), (2, 0): ('square', 'black'), (2, 1): ('square', 'black'), (2, 2): ('square', 'white'), (3, 0): ('circle', 'black'), (3, 1): ('square', 'white'), (3, 2): ('triangle', 'black'), (4, 0): ('circle', 'white'), (4, 1): ('circle', 'black'), (4, 2): ('square', 'black'), (5, 0): ('square', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('square', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('square', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'white'), (3, 0): ('square', 'white'), (3, 1): ('triangle', 'black'), (3, 2): ('circle', 'black'), (4, 0): ('square', 'white'), (4, 1): ('triangle', 'black'), (4, 2): ('circle', 'black'), (5, 0): ('triangle', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('circle', 'black')}]","(6, 3, 5)"
+120.svg,"[{(0, 0): ('circle', 'white'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'black'), (0, 3): ('triangle', 'white'), (0, 4): ('square', 'black'), (0, 5): ('square', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('square', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('square', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('triangle', 'black'), (2, 3): ('square', 'black'), (2, 4): ('square', 'black'), (2, 5): ('circle', 'black'), (3, 0): ('square', 'white'), (3, 1): ('circle', 'white'), (3, 2): ('circle', 'white'), (3, 3): ('triangle', 'black'), (3, 4): ('square', 'white'), (3, 5): ('triangle', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('triangle', 'black'), (4, 2): ('circle', 'white'), (4, 3): ('circle', 'white'), (4, 4): ('circle', 'black'), (4, 5): ('triangle', 'black'), (5, 0): ('triangle', 'white'), (5, 1): ('square', 'white'), (5, 2): ('square', 'white'), (5, 3): ('circle', 'black'), (5, 4): ('square', 'white'), (5, 5): ('square', 'white')}]","(6, 6, 1)"
+121.svg,"[{(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('square', 'white'), (0, 3): ('triangle', 'black'), (0, 4): ('square', 'black'), (0, 5): ('square', 'black'), (1, 0): ('square', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'black'), (1, 3): ('circle', 'white'), (1, 4): ('triangle', 'white'), (1, 5): ('square', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('triangle', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('square', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('circle', 'white'), (3, 2): ('circle', 'white'), (3, 3): ('triangle', 'white'), (3, 4): ('triangle', 'white'), (3, 5): ('circle', 'black'), (4, 0): ('circle', 'white'), (4, 1): ('square', 'black'), (4, 2): ('triangle', 'white'), (4, 3): ('circle', 'white'), (4, 4): ('square', 'white'), (4, 5): ('circle', 'black'), (5, 0): ('square', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('circle', 'white'), (5, 3): ('circle', 'white'), (5, 4): ('triangle', 'black'), (5, 5): ('triangle', 'black')}]","(6, 6, 1)"
+122.svg,"[{(0, 0): ('square', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('circle', 'white'), (0, 3): ('triangle', 'white'), (0, 4): ('triangle', 'black'), (0, 5): ('circle', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('triangle', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('square', 'black'), (1, 5): ('square', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('square', 'white'), (2, 3): ('triangle', 'white'), (2, 4): ('square', 'white'), (2, 5): ('circle', 'white'), (3, 0): ('circle', 'white'), (3, 1): ('triangle', 'black'), (3, 2): ('circle', 'white'), (3, 3): ('circle', 'white'), (3, 4): ('circle', 'black'), (3, 5): ('triangle', 'black'), (4, 0): ('square', 'black'), (4, 1): ('triangle', 'black'), (4, 2): ('triangle', 'white'), (4, 3): ('square', 'white'), (4, 4): ('triangle', 'black'), (4, 5): ('circle', 'black'), (5, 0): ('triangle', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('triangle', 'black'), (5, 3): ('square', 'black'), (5, 4): ('circle', 'white'), (5, 5): ('circle', 'white')}]","(6, 6, 1)"
+123.svg,"[{(0, 0): ('square', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('square', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('square', 'white'), (0, 5): ('triangle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('square', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('circle', 'black'), (1, 5): ('circle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('square', 'white'), (2, 2): ('square', 'black'), (2, 3): ('circle', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('square', 'black'), (3, 0): ('square', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('circle', 'white'), (3, 3): ('circle', 'black'), (3, 4): ('circle', 'black'), (3, 5): ('square', 'black'), (4, 0): ('square', 'black'), (4, 1): ('triangle', 'white'), (4, 2): ('triangle', 'black'), (4, 3): ('square', 'black'), (4, 4): ('square', 'black'), (4, 5): ('circle', 'white'), (5, 0): ('triangle', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('triangle', 'black'), (5, 3): ('circle', 'white'), (5, 4): ('triangle', 'white'), (5, 5): ('square', 'black')}]","(6, 6, 1)"
+124.svg,"[{(0, 0): ('triangle', 'white'), (0, 1): ('square', 'black'), (0, 2): ('square', 'white'), (0, 3): ('circle', 'white'), (0, 4): ('circle', 'white'), (0, 5): ('square', 'white'), (1, 0): ('square', 'white'), (1, 1): ('square', 'white'), (1, 2): ('square', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('circle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('square', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('circle', 'black'), (3, 0): ('triangle', 'white'), (3, 1): ('triangle', 'black'), (3, 2): ('circle', 'white'), (3, 3): ('triangle', 'black'), (3, 4): ('square', 'white'), (3, 5): ('triangle', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('triangle', 'black'), (4, 2): ('triangle', 'white'), (4, 3): ('square', 'white'), (4, 4): ('triangle', 'white'), (4, 5): ('triangle', 'black'), (5, 0): ('circle', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('triangle', 'white'), (5, 3): ('triangle', 'white'), (5, 4): ('circle', 'black'), (5, 5): ('square', 'black')}]","(6, 6, 1)"
+125.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('square', 'white'), (0, 4): ('circle', 'white'), (0, 5): ('triangle', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('triangle', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('circle', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('square', 'white'), (2, 4): ('circle', 'black'), (2, 5): ('triangle', 'black'), (3, 0): ('square', 'black'), (3, 1): ('square', 'white'), (3, 2): ('triangle', 'white'), (3, 3): ('triangle', 'black'), (3, 4): ('circle', 'white'), (3, 5): ('triangle', 'black'), (4, 0): ('triangle', 'white'), (4, 1): ('triangle', 'black'), (4, 2): ('triangle', 'white'), (4, 3): ('circle', 'black'), (4, 4): ('triangle', 'white'), (4, 5): ('square', 'white'), (5, 0): ('triangle', 'white'), (5, 1): ('square', 'black'), (5, 2): ('square', 'white'), (5, 3): ('circle', 'white'), (5, 4): ('triangle', 'black'), (5, 5): ('square', 'black')}]","(6, 6, 1)"
+126.svg,"[{(0, 0): ('circle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'black'), (0, 3): ('circle', 'white'), (0, 4): ('circle', 'black'), (0, 5): ('triangle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('circle', 'white'), (1, 3): ('square', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('square', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('circle', 'black'), (2, 3): ('square', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('square', 'white'), (3, 0): ('triangle', 'white'), (3, 1): ('triangle', 'black'), (3, 2): ('triangle', 'black'), (3, 3): ('circle', 'white'), (3, 4): ('square', 'white'), (3, 5): ('circle', 'white'), (4, 0): ('triangle', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('square', 'black'), (4, 3): ('square', 'black'), (4, 4): ('square', 'white'), (4, 5): ('circle', 'black'), (5, 0): ('square', 'white'), (5, 1): ('triangle', 'black'), (5, 2): ('square', 'black'), (5, 3): ('square', 'black'), (5, 4): ('square', 'black'), (5, 5): ('square', 'black')}]","(6, 6, 1)"
+127.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('square', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('triangle', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('triangle', 'white'), (1, 5): ('square', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('square', 'white'), (3, 0): ('square', 'white'), (3, 1): ('square', 'white'), (3, 2): ('circle', 'white'), (3, 3): ('circle', 'black'), (3, 4): ('triangle', 'black'), (3, 5): ('square', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('square', 'black'), (4, 3): ('triangle', 'white'), (4, 4): ('circle', 'white'), (4, 5): ('circle', 'black'), (5, 0): ('triangle', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('square', 'black'), (5, 3): ('square', 'black'), (5, 4): ('triangle', 'black'), (5, 5): ('square', 'white')}]","(6, 6, 1)"
+128.svg,"[{(0, 0): ('triangle', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('circle', 'white'), (0, 3): ('square', 'white'), (0, 4): ('circle', 'white'), (0, 5): ('square', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('circle', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('circle', 'white'), (2, 0): ('square', 'white'), (2, 1): ('square', 'black'), (2, 2): ('square', 'white'), (2, 3): ('triangle', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('square', 'black'), (3, 0): ('circle', 'white'), (3, 1): ('square', 'white'), (3, 2): ('circle', 'black'), (3, 3): ('square', 'white'), (3, 4): ('triangle', 'white'), (3, 5): ('triangle', 'white'), (4, 0): ('triangle', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('triangle', 'white'), (4, 3): ('triangle', 'black'), (4, 4): ('circle', 'black'), (4, 5): ('triangle', 'black'), (5, 0): ('circle', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('triangle', 'black'), (5, 3): ('square', 'white'), (5, 4): ('triangle', 'black'), (5, 5): ('square', 'black')}]","(6, 6, 1)"
+129.svg,"[{(0, 0): ('triangle', 'black'), (0, 1): ('square', 'white'), (0, 2): ('square', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('circle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('circle', 'black'), (1, 3): ('square', 'black'), (1, 4): ('triangle', 'white'), (1, 5): ('triangle', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('triangle', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('triangle', 'black'), (3, 0): ('square', 'white'), (3, 1): ('circle', 'black'), (3, 2): ('square', 'black'), (3, 3): ('triangle', 'white'), (3, 4): ('triangle', 'white'), (3, 5): ('square', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('triangle', 'white'), (4, 3): ('square', 'white'), (4, 4): ('square', 'white'), (4, 5): ('triangle', 'black'), (5, 0): ('circle', 'black'), (5, 1): ('triangle', 'white'), (5, 2): ('circle', 'white'), (5, 3): ('circle', 'black'), (5, 4): ('square', 'black'), (5, 5): ('circle', 'white')}]","(6, 6, 1)"
+130.svg,"[{(0, 0): ('square', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('square', 'black'), (0, 3): ('square', 'white'), (0, 4): ('triangle', 'black'), (0, 5): ('square', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('square', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('square', 'white'), (2, 5): ('triangle', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('triangle', 'black'), (3, 2): ('circle', 'white'), (3, 3): ('circle', 'black'), (3, 4): ('triangle', 'white'), (3, 5): ('square', 'black'), (4, 0): ('triangle', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('triangle', 'black'), (4, 3): ('triangle', 'black'), (4, 4): ('circle', 'white'), (4, 5): ('triangle', 'black'), (5, 0): ('circle', 'white'), (5, 1): ('square', 'black'), (5, 2): ('square', 'white'), (5, 3): ('circle', 'black'), (5, 4): ('circle', 'white'), (5, 5): ('circle', 'black')}, {(0, 0): ('square', 'black'), (0, 1): ('square', 'black'), (0, 2): ('circle', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('square', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('square', 'black'), (1, 2): ('square', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('circle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'black'), (2, 2): ('square', 'black'), (2, 3): ('circle', 'black'), (2, 4): ('square', 'white'), (2, 5): ('circle', 'black'), (3, 0): ('square', 'black'), (3, 1): ('circle', 'white'), (3, 2): ('square', 'black'), (3, 3): ('triangle', 'white'), (3, 4): ('triangle', 'black'), (3, 5): ('circle', 'black'), (4, 0): ('circle', 'white'), (4, 1): ('circle', 'black'), (4, 2): ('square', 'black'), (4, 3): ('square', 'black'), (4, 4): ('square', 'black'), (4, 5): ('square', 'black'), (5, 0): ('square', 'black'), (5, 1): ('square', 'black'), (5, 2): ('square', 'white'), (5, 3): ('circle', 'black'), (5, 4): ('circle', 'white'), (5, 5): ('square', 'black')}, {(0, 0): ('circle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('triangle', 'white'), (0, 3): ('triangle', 'white'), (0, 4): ('circle', 'black'), (0, 5): ('triangle', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('triangle', 'white'), (1, 5): ('circle', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'black'), (2, 2): ('square', 'white'), (2, 3): ('circle', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('square', 'white'), (3, 0): ('triangle', 'white'), (3, 1): ('circle', 'white'), (3, 2): ('circle', 'white'), (3, 3): ('square', 'black'), (3, 4): ('square', 'white'), (3, 5): ('square', 'white'), (4, 0): ('circle', 'black'), (4, 1): ('triangle', 'white'), (4, 2): ('square', 'white'), (4, 3): ('triangle', 'black'), (4, 4): ('square', 'black'), (4, 5): ('triangle', 'white'), (5, 0): ('circle', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('square', 'white'), (5, 3): ('square', 'white'), (5, 4): ('circle', 'black'), (5, 5): ('triangle', 'black')}]","(6, 6, 3)"
+131.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'black'), (0, 3): ('square', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('circle', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('triangle', 'black'), (1, 5): ('triangle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('circle', 'white'), (2, 3): ('circle', 'black'), (2, 4): ('circle', 'white'), (2, 5): ('square', 'black'), (3, 0): ('square', 'black'), (3, 1): ('square', 'white'), (3, 2): ('square', 'white'), (3, 3): ('square', 'black'), (3, 4): ('triangle', 'black'), (3, 5): ('square', 'black'), (4, 0): ('triangle', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('triangle', 'black'), (4, 3): ('triangle', 'black'), (4, 4): ('square', 'black'), (4, 5): ('circle', 'white'), (5, 0): ('circle', 'white'), (5, 1): ('triangle', 'white'), (5, 2): ('square', 'white'), (5, 3): ('square', 'black'), (5, 4): ('square', 'black'), (5, 5): ('triangle', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('square', 'white'), (0, 3): ('triangle', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('square', 'white'), (1, 0): ('square', 'black'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'black'), (1, 3): ('circle', 'white'), (1, 4): ('triangle', 'black'), (1, 5): ('circle', 'white'), (2, 0): ('square', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('square', 'white'), (2, 5): ('square', 'black'), (3, 0): ('square', 'white'), (3, 1): ('triangle', 'black'), (3, 2): ('square', 'black'), (3, 3): ('triangle', 'white'), (3, 4): ('square', 'white'), (3, 5): ('square', 'black'), (4, 0): ('triangle', 'white'), (4, 1): ('square', 'white'), (4, 2): ('circle', 'black'), (4, 3): ('triangle', 'white'), (4, 4): ('circle', 'white'), (4, 5): ('triangle', 'white'), (5, 0): ('square', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('triangle', 'black'), (5, 3): ('circle', 'black'), (5, 4): ('square', 'white'), (5, 5): ('triangle', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('square', 'white'), (0, 5): ('triangle', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('triangle', 'black'), (1, 5): ('circle', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('square', 'black'), (2, 3): ('square', 'black'), (2, 4): ('square', 'white'), (2, 5): ('circle', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('square', 'white'), (3, 2): ('circle', 'white'), (3, 3): ('triangle', 'white'), (3, 4): ('square', 'black'), (3, 5): ('circle', 'white'), (4, 0): ('circle', 'white'), (4, 1): ('triangle', 'black'), (4, 2): ('square', 'white'), (4, 3): ('square', 'black'), (4, 4): ('triangle', 'black'), (4, 5): ('circle', 'white'), (5, 0): ('circle', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('circle', 'white'), (5, 3): ('triangle', 'black'), (5, 4): ('triangle', 'white'), (5, 5): ('triangle', 'black')}]","(6, 6, 3)"
+132.svg,"[{(0, 0): ('triangle', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('circle', 'white'), (0, 4): ('circle', 'black'), (0, 5): ('triangle', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('circle', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('triangle', 'white'), (1, 5): ('square', 'black'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('triangle', 'white'), (2, 3): ('square', 'white'), (2, 4): ('triangle', 'white'), (2, 5): ('circle', 'white'), (3, 0): ('square', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('square', 'white'), (3, 3): ('triangle', 'white'), (3, 4): ('square', 'black'), (3, 5): ('square', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('square', 'white'), (4, 2): ('triangle', 'black'), (4, 3): ('circle', 'white'), (4, 4): ('circle', 'black'), (4, 5): ('circle', 'black'), (5, 0): ('square', 'white'), (5, 1): ('triangle', 'black'), (5, 2): ('square', 'white'), (5, 3): ('circle', 'black'), (5, 4): ('triangle', 'white'), (5, 5): ('square', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('square', 'black'), (0, 3): ('triangle', 'white'), (0, 4): ('triangle', 'white'), (0, 5): ('square', 'black'), (1, 0): ('square', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('square', 'black'), (1, 5): ('square', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'white'), (2, 3): ('square', 'white'), (2, 4): ('circle', 'white'), (2, 5): ('square', 'black'), (3, 0): ('triangle', 'white'), (3, 1): ('triangle', 'white'), (3, 2): ('circle', 'black'), (3, 3): ('square', 'black'), (3, 4): ('triangle', 'white'), (3, 5): ('square', 'white'), (4, 0): ('triangle', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('circle', 'white'), (4, 3): ('circle', 'black'), (4, 4): ('circle', 'black'), (4, 5): ('triangle', 'white'), (5, 0): ('triangle', 'black'), (5, 1): ('triangle', 'white'), (5, 2): ('triangle', 'white'), (5, 3): ('circle', 'black'), (5, 4): ('circle', 'white'), (5, 5): ('square', 'black')}, {(0, 0): ('circle', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'black'), (0, 3): ('circle', 'white'), (0, 4): ('square', 'black'), (0, 5): ('triangle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'white'), (1, 3): ('square', 'black'), (1, 4): ('circle', 'black'), (1, 5): ('circle', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('square', 'black'), (2, 3): ('circle', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('square', 'black'), (3, 0): ('triangle', 'white'), (3, 1): ('square', 'white'), (3, 2): ('circle', 'white'), (3, 3): ('circle', 'white'), (3, 4): ('circle', 'white'), (3, 5): ('square', 'black'), (4, 0): ('square', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('triangle', 'white'), (4, 3): ('circle', 'white'), (4, 4): ('triangle', 'white'), (4, 5): ('triangle', 'black'), (5, 0): ('triangle', 'black'), (5, 1): ('square', 'black'), (5, 2): ('triangle', 'white'), (5, 3): ('circle', 'black'), (5, 4): ('triangle', 'black'), (5, 5): ('circle', 'white')}]","(6, 6, 3)"
+133.svg,"[{(0, 0): ('circle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('circle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('triangle', 'white'), (1, 3): ('square', 'black'), (1, 4): ('circle', 'black'), (1, 5): ('circle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('square', 'black'), (2, 3): ('triangle', 'white'), (2, 4): ('circle', 'black'), (2, 5): ('circle', 'white'), (3, 0): ('square', 'white'), (3, 1): ('circle', 'white'), (3, 2): ('square', 'black'), (3, 3): ('square', 'black'), (3, 4): ('square', 'black'), (3, 5): ('circle', 'black'), (4, 0): ('triangle', 'white'), (4, 1): ('square', 'black'), (4, 2): ('square', 'black'), (4, 3): ('triangle', 'black'), (4, 4): ('circle', 'white'), (4, 5): ('triangle', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('triangle', 'black'), (5, 3): ('triangle', 'black'), (5, 4): ('triangle', 'black'), (5, 5): ('square', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('square', 'black'), (0, 2): ('square', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('triangle', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'black'), (1, 3): ('square', 'black'), (1, 4): ('triangle', 'black'), (1, 5): ('triangle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('circle', 'black'), (2, 4): ('circle', 'black'), (2, 5): ('circle', 'white'), (3, 0): ('circle', 'black'), (3, 1): ('circle', 'white'), (3, 2): ('triangle', 'black'), (3, 3): ('circle', 'white'), (3, 4): ('triangle', 'white'), (3, 5): ('triangle', 'white'), (4, 0): ('circle', 'black'), (4, 1): ('square', 'black'), (4, 2): ('square', 'white'), (4, 3): ('square', 'white'), (4, 4): ('triangle', 'white'), (4, 5): ('square', 'white'), (5, 0): ('square', 'white'), (5, 1): ('triangle', 'black'), (5, 2): ('triangle', 'black'), (5, 3): ('triangle', 'white'), (5, 4): ('circle', 'black'), (5, 5): ('triangle', 'black')}, {(0, 0): ('circle', 'white'), (0, 1): ('square', 'black'), (0, 2): ('square', 'white'), (0, 3): ('triangle', 'white'), (0, 4): ('triangle', 'black'), (0, 5): ('circle', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('square', 'black'), (1, 3): ('square', 'black'), (1, 4): ('circle', 'black'), (1, 5): ('circle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'black'), (2, 2): ('square', 'white'), (2, 3): ('circle', 'white'), (2, 4): ('square', 'white'), (2, 5): ('square', 'black'), (3, 0): ('circle', 'white'), (3, 1): ('square', 'black'), (3, 2): ('triangle', 'black'), (3, 3): ('triangle', 'black'), (3, 4): ('square', 'black'), (3, 5): ('square', 'white'), (4, 0): ('circle', 'white'), (4, 1): ('triangle', 'black'), (4, 2): ('square', 'black'), (4, 3): ('square', 'black'), (4, 4): ('circle', 'black'), (4, 5): ('triangle', 'black'), (5, 0): ('square', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('triangle', 'black'), (5, 3): ('circle', 'black'), (5, 4): ('square', 'black'), (5, 5): ('circle', 'black')}]","(6, 6, 3)"
+134.svg,"[{(0, 0): ('square', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('triangle', 'black'), (0, 3): ('square', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('circle', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('square', 'white'), (1, 5): ('square', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('square', 'black'), (2, 2): ('square', 'black'), (2, 3): ('triangle', 'white'), (2, 4): ('square', 'black'), (2, 5): ('square', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('triangle', 'black'), (3, 2): ('circle', 'black'), (3, 3): ('square', 'white'), (3, 4): ('square', 'white'), (3, 5): ('triangle', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('triangle', 'black'), (4, 3): ('circle', 'black'), (4, 4): ('circle', 'black'), (4, 5): ('circle', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('triangle', 'white'), (5, 2): ('triangle', 'black'), (5, 3): ('triangle', 'white'), (5, 4): ('triangle', 'white'), (5, 5): ('square', 'black')}, {(0, 0): ('triangle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'white'), (0, 3): ('square', 'black'), (0, 4): ('square', 'white'), (0, 5): ('circle', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'black'), (1, 3): ('triangle', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('square', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('triangle', 'white'), (2, 3): ('square', 'black'), (2, 4): ('circle', 'black'), (2, 5): ('square', 'black'), (3, 0): ('square', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('circle', 'white'), (3, 3): ('triangle', 'black'), (3, 4): ('circle', 'white'), (3, 5): ('triangle', 'white'), (4, 0): ('square', 'white'), (4, 1): ('square', 'black'), (4, 2): ('triangle', 'white'), (4, 3): ('circle', 'black'), (4, 4): ('square', 'black'), (4, 5): ('triangle', 'black'), (5, 0): ('triangle', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('triangle', 'white'), (5, 3): ('triangle', 'black'), (5, 4): ('square', 'black'), (5, 5): ('circle', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('square', 'white'), (0, 5): ('square', 'white'), (1, 0): ('square', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'black'), (1, 3): ('triangle', 'white'), (1, 4): ('square', 'white'), (1, 5): ('circle', 'black'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('square', 'white'), (2, 3): ('circle', 'white'), (2, 4): ('triangle', 'white'), (2, 5): ('triangle', 'white'), (3, 0): ('circle', 'white'), (3, 1): ('square', 'white'), (3, 2): ('circle', 'black'), (3, 3): ('triangle', 'black'), (3, 4): ('circle', 'black'), (3, 5): ('square', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('circle', 'white'), (4, 2): ('triangle', 'black'), (4, 3): ('triangle', 'black'), (4, 4): ('triangle', 'black'), (4, 5): ('square', 'black'), (5, 0): ('circle', 'white'), (5, 1): ('square', 'black'), (5, 2): ('triangle', 'black'), (5, 3): ('square', 'white'), (5, 4): ('triangle', 'white'), (5, 5): ('triangle', 'white')}]","(6, 6, 3)"
+135.svg,"[{(0, 0): ('circle', 'white'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('triangle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('square', 'white'), (1, 2): ('triangle', 'black'), (1, 3): ('circle', 'white'), (1, 4): ('square', 'white'), (1, 5): ('square', 'black'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('square', 'white'), (2, 4): ('triangle', 'white'), (2, 5): ('square', 'white'), (3, 0): ('circle', 'white'), (3, 1): ('triangle', 'black'), (3, 2): ('circle', 'black'), (3, 3): ('triangle', 'white'), (3, 4): ('circle', 'black'), (3, 5): ('square', 'white'), (4, 0): ('triangle', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('circle', 'black'), (4, 3): ('triangle', 'white'), (4, 4): ('circle', 'white'), (4, 5): ('triangle', 'white'), (5, 0): ('triangle', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('triangle', 'white'), (5, 3): ('circle', 'white'), (5, 4): ('circle', 'white'), (5, 5): ('triangle', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('square', 'white'), (0, 2): ('triangle', 'black'), (0, 3): ('square', 'white'), (0, 4): ('circle', 'white'), (0, 5): ('triangle', 'white'), (1, 0): ('triangle', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('circle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('square', 'white'), (2, 3): ('triangle', 'white'), (2, 4): ('circle', 'white'), (2, 5): ('square', 'black'), (3, 0): ('circle', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('triangle', 'black'), (3, 3): ('circle', 'black'), (3, 4): ('square', 'white'), (3, 5): ('triangle', 'white'), (4, 0): ('circle', 'white'), (4, 1): ('circle', 'black'), (4, 2): ('triangle', 'black'), (4, 3): ('triangle', 'white'), (4, 4): ('triangle', 'black'), (4, 5): ('circle', 'black'), (5, 0): ('circle', 'white'), (5, 1): ('square', 'black'), (5, 2): ('square', 'black'), (5, 3): ('circle', 'white'), (5, 4): ('square', 'white'), (5, 5): ('square', 'white')}, {(0, 0): ('triangle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('square', 'white'), (0, 3): ('square', 'white'), (0, 4): ('triangle', 'white'), (0, 5): ('triangle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('square', 'black'), (1, 3): ('square', 'white'), (1, 4): ('square', 'black'), (1, 5): ('triangle', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('square', 'white'), (2, 3): ('square', 'black'), (2, 4): ('square', 'white'), (2, 5): ('triangle', 'white'), (3, 0): ('triangle', 'black'), (3, 1): ('square', 'white'), (3, 2): ('triangle', 'white'), (3, 3): ('circle', 'black'), (3, 4): ('triangle', 'white'), (3, 5): ('circle', 'white'), (4, 0): ('square', 'black'), (4, 1): ('square', 'white'), (4, 2): ('circle', 'black'), (4, 3): ('triangle', 'white'), (4, 4): ('circle', 'white'), (4, 5): ('square', 'white'), (5, 0): ('square', 'black'), (5, 1): ('square', 'black'), (5, 2): ('circle', 'white'), (5, 3): ('square', 'black'), (5, 4): ('circle', 'black'), (5, 5): ('circle', 'white')}]","(6, 6, 3)"
+136.svg,"[{(0, 0): ('circle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('circle', 'white'), (0, 4): ('square', 'black'), (0, 5): ('triangle', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('square', 'white'), (1, 2): ('square', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('square', 'white'), (1, 5): ('square', 'black'), (2, 0): ('square', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('square', 'white'), (2, 4): ('triangle', 'white'), (2, 5): ('triangle', 'black'), (3, 0): ('square', 'white'), (3, 1): ('circle', 'white'), (3, 2): ('square', 'white'), (3, 3): ('circle', 'white'), (3, 4): ('square', 'black'), (3, 5): ('square', 'black'), (4, 0): ('square', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('circle', 'black'), (4, 3): ('circle', 'black'), (4, 4): ('square', 'black'), (4, 5): ('triangle', 'white'), (5, 0): ('triangle', 'white'), (5, 1): ('triangle', 'white'), (5, 2): ('circle', 'white'), (5, 3): ('circle', 'white'), (5, 4): ('circle', 'white'), (5, 5): ('triangle', 'black')}, {(0, 0): ('circle', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('square', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('square', 'white'), (1, 2): ('square', 'white'), (1, 3): ('square', 'black'), (1, 4): ('circle', 'black'), (1, 5): ('circle', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('circle', 'white'), (2, 3): ('square', 'black'), (2, 4): ('circle', 'black'), (2, 5): ('triangle', 'black'), (3, 0): ('square', 'white'), (3, 1): ('square', 'black'), (3, 2): ('triangle', 'black'), (3, 3): ('triangle', 'white'), (3, 4): ('square', 'black'), (3, 5): ('circle', 'white'), (4, 0): ('circle', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('triangle', 'white'), (4, 3): ('circle', 'white'), (4, 4): ('circle', 'white'), (4, 5): ('square', 'black'), (5, 0): ('circle', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('triangle', 'black'), (5, 3): ('circle', 'black'), (5, 4): ('triangle', 'white'), (5, 5): ('square', 'black')}, {(0, 0): ('square', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('square', 'white'), (0, 5): ('triangle', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('triangle', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('square', 'black'), (1, 5): ('circle', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('circle', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('triangle', 'white'), (2, 5): ('circle', 'white'), (3, 0): ('circle', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('circle', 'white'), (3, 3): ('square', 'black'), (3, 4): ('triangle', 'white'), (3, 5): ('square', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('circle', 'white'), (4, 2): ('triangle', 'black'), (4, 3): ('triangle', 'black'), (4, 4): ('triangle', 'white'), (4, 5): ('triangle', 'white'), (5, 0): ('square', 'black'), (5, 1): ('triangle', 'white'), (5, 2): ('square', 'white'), (5, 3): ('triangle', 'black'), (5, 4): ('triangle', 'black'), (5, 5): ('square', 'white')}]","(6, 6, 3)"
+137.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('triangle', 'black'), (0, 3): ('square', 'white'), (0, 4): ('triangle', 'white'), (0, 5): ('triangle', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('circle', 'black'), (2, 0): ('square', 'black'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('square', 'black'), (2, 4): ('circle', 'black'), (2, 5): ('triangle', 'white'), (3, 0): ('circle', 'white'), (3, 1): ('triangle', 'white'), (3, 2): ('square', 'white'), (3, 3): ('square', 'white'), (3, 4): ('triangle', 'white'), (3, 5): ('triangle', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('triangle', 'white'), (4, 2): ('square', 'white'), (4, 3): ('triangle', 'black'), (4, 4): ('square', 'black'), (4, 5): ('circle', 'white'), (5, 0): ('triangle', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('triangle', 'black'), (5, 3): ('circle', 'black'), (5, 4): ('triangle', 'black'), (5, 5): ('triangle', 'black')}, {(0, 0): ('square', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('square', 'white'), (0, 5): ('circle', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'black'), (1, 3): ('triangle', 'white'), (1, 4): ('square', 'white'), (1, 5): ('triangle', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('circle', 'white'), (2, 3): ('square', 'white'), (2, 4): ('square', 'black'), (2, 5): ('square', 'black'), (3, 0): ('triangle', 'white'), (3, 1): ('circle', 'black'), (3, 2): ('square', 'black'), (3, 3): ('circle', 'black'), (3, 4): ('circle', 'white'), (3, 5): ('circle', 'white'), (4, 0): ('circle', 'black'), (4, 1): ('square', 'black'), (4, 2): ('square', 'black'), (4, 3): ('triangle', 'black'), (4, 4): ('circle', 'white'), (4, 5): ('circle', 'white'), (5, 0): ('triangle', 'black'), (5, 1): ('triangle', 'black'), (5, 2): ('circle', 'black'), (5, 3): ('circle', 'white'), (5, 4): ('square', 'black'), (5, 5): ('square', 'black')}, {(0, 0): ('square', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('square', 'white'), (0, 3): ('square', 'white'), (0, 4): ('square', 'black'), (0, 5): ('circle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('triangle', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('square', 'white'), (2, 5): ('square', 'white'), (3, 0): ('square', 'white'), (3, 1): ('circle', 'white'), (3, 2): ('square', 'white'), (3, 3): ('square', 'black'), (3, 4): ('triangle', 'black'), (3, 5): ('square', 'white'), (4, 0): ('square', 'black'), (4, 1): ('triangle', 'white'), (4, 2): ('triangle', 'black'), (4, 3): ('square', 'white'), (4, 4): ('circle', 'black'), (4, 5): ('triangle', 'white'), (5, 0): ('circle', 'white'), (5, 1): ('square', 'white'), (5, 2): ('triangle', 'white'), (5, 3): ('triangle', 'black'), (5, 4): ('square', 'black'), (5, 5): ('circle', 'white')}]","(6, 6, 3)"
+138.svg,"[{(0, 0): ('triangle', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('square', 'black'), (0, 5): ('triangle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('square', 'black'), (1, 2): ('triangle', 'black'), (1, 3): ('triangle', 'black'), (1, 4): ('triangle', 'white'), (1, 5): ('triangle', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('square', 'white'), (2, 2): ('circle', 'black'), (2, 3): ('circle', 'black'), (2, 4): ('square', 'white'), (2, 5): ('circle', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('triangle', 'black'), (3, 2): ('circle', 'black'), (3, 3): ('square', 'black'), (3, 4): ('triangle', 'white'), (3, 5): ('square', 'white'), (4, 0): ('triangle', 'white'), (4, 1): ('circle', 'black'), (4, 2): ('circle', 'black'), (4, 3): ('triangle', 'white'), (4, 4): ('circle', 'white'), (4, 5): ('square', 'white'), (5, 0): ('square', 'white'), (5, 1): ('square', 'white'), (5, 2): ('circle', 'white'), (5, 3): ('circle', 'white'), (5, 4): ('triangle', 'black'), (5, 5): ('triangle', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('circle', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('circle', 'black'), (1, 3): ('triangle', 'black'), (1, 4): ('square', 'black'), (1, 5): ('square', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('square', 'black'), (2, 3): ('triangle', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('circle', 'black'), (3, 0): ('triangle', 'white'), (3, 1): ('square', 'white'), (3, 2): ('square', 'white'), (3, 3): ('triangle', 'black'), (3, 4): ('circle', 'black'), (3, 5): ('triangle', 'white'), (4, 0): ('triangle', 'white'), (4, 1): ('square', 'white'), (4, 2): ('circle', 'black'), (4, 3): ('square', 'black'), (4, 4): ('circle', 'black'), (4, 5): ('circle', 'white'), (5, 0): ('square', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('circle', 'white'), (5, 3): ('circle', 'black'), (5, 4): ('circle', 'black'), (5, 5): ('circle', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('square', 'white'), (0, 2): ('square', 'white'), (0, 3): ('triangle', 'white'), (0, 4): ('circle', 'black'), (0, 5): ('square', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('square', 'white'), (1, 2): ('square', 'white'), (1, 3): ('square', 'white'), (1, 4): ('triangle', 'white'), (1, 5): ('square', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('triangle', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('circle', 'white'), (2, 5): ('square', 'black'), (3, 0): ('square', 'white'), (3, 1): ('triangle', 'black'), (3, 2): ('circle', 'black'), (3, 3): ('circle', 'black'), (3, 4): ('triangle', 'black'), (3, 5): ('square', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('circle', 'black'), (4, 3): ('circle', 'white'), (4, 4): ('square', 'white'), (4, 5): ('circle', 'white'), (5, 0): ('triangle', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('circle', 'white'), (5, 3): ('circle', 'white'), (5, 4): ('triangle', 'black'), (5, 5): ('circle', 'black')}]","(6, 6, 3)"
+139.svg,"[{(0, 0): ('circle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('square', 'black'), (0, 5): ('circle', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('square', 'black'), (1, 2): ('square', 'white'), (1, 3): ('triangle', 'white'), (1, 4): ('triangle', 'white'), (1, 5): ('circle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('square', 'black'), (2, 4): ('circle', 'black'), (2, 5): ('square', 'white'), (3, 0): ('square', 'black'), (3, 1): ('triangle', 'black'), (3, 2): ('square', 'black'), (3, 3): ('square', 'white'), (3, 4): ('square', 'white'), (3, 5): ('triangle', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('triangle', 'black'), (4, 2): ('circle', 'white'), (4, 3): ('square', 'white'), (4, 4): ('circle', 'black'), (4, 5): ('triangle', 'white'), (5, 0): ('square', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('square', 'black'), (5, 3): ('square', 'black'), (5, 4): ('circle', 'black'), (5, 5): ('circle', 'black')}, {(0, 0): ('square', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('circle', 'black'), (0, 5): ('circle', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'black'), (1, 3): ('circle', 'white'), (1, 4): ('square', 'white'), (1, 5): ('circle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('square', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('square', 'white'), (3, 0): ('circle', 'black'), (3, 1): ('circle', 'white'), (3, 2): ('square', 'white'), (3, 3): ('circle', 'black'), (3, 4): ('circle', 'white'), (3, 5): ('circle', 'black'), (4, 0): ('triangle', 'white'), (4, 1): ('circle', 'black'), (4, 2): ('circle', 'black'), (4, 3): ('circle', 'white'), (4, 4): ('circle', 'black'), (4, 5): ('circle', 'white'), (5, 0): ('square', 'black'), (5, 1): ('triangle', 'white'), (5, 2): ('triangle', 'black'), (5, 3): ('circle', 'black'), (5, 4): ('circle', 'white'), (5, 5): ('circle', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('square', 'white'), (0, 2): ('triangle', 'white'), (0, 3): ('triangle', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('circle', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('triangle', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('triangle', 'black'), (1, 5): ('triangle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('circle', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('square', 'black'), (3, 0): ('triangle', 'white'), (3, 1): ('circle', 'black'), (3, 2): ('square', 'black'), (3, 3): ('square', 'black'), (3, 4): ('square', 'white'), (3, 5): ('triangle', 'white'), (4, 0): ('square', 'black'), (4, 1): ('square', 'white'), (4, 2): ('square', 'white'), (4, 3): ('square', 'white'), (4, 4): ('square', 'black'), (4, 5): ('square', 'white'), (5, 0): ('square', 'white'), (5, 1): ('square', 'white'), (5, 2): ('triangle', 'black'), (5, 3): ('circle', 'black'), (5, 4): ('circle', 'white'), (5, 5): ('circle', 'white')}]","(6, 6, 3)"
+140.svg,"[{(0, 0): ('square', 'black'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('triangle', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('triangle', 'white'), (1, 0): ('triangle', 'white'), (1, 1): ('square', 'white'), (1, 2): ('triangle', 'black'), (1, 3): ('triangle', 'white'), (1, 4): ('triangle', 'black'), (1, 5): ('square', 'black'), (2, 0): ('square', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('square', 'white'), (2, 3): ('square', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('square', 'white'), (3, 0): ('square', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('circle', 'black'), (3, 3): ('triangle', 'white'), (3, 4): ('triangle', 'white'), (3, 5): ('circle', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('triangle', 'white'), (4, 2): ('circle', 'white'), (4, 3): ('circle', 'white'), (4, 4): ('triangle', 'black'), (4, 5): ('square', 'white'), (5, 0): ('circle', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('square', 'black'), (5, 3): ('triangle', 'black'), (5, 4): ('triangle', 'black'), (5, 5): ('circle', 'black')}, {(0, 0): ('square', 'black'), (0, 1): ('square', 'white'), (0, 2): ('square', 'black'), (0, 3): ('circle', 'white'), (0, 4): ('square', 'white'), (0, 5): ('circle', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('square', 'white'), (1, 2): ('triangle', 'black'), (1, 3): ('square', 'white'), (1, 4): ('triangle', 'black'), (1, 5): ('triangle', 'white'), (2, 0): ('square', 'white'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('square', 'white'), (2, 4): ('triangle', 'white'), (2, 5): ('circle', 'white'), (3, 0): ('triangle', 'white'), (3, 1): ('square', 'white'), (3, 2): ('square', 'white'), (3, 3): ('square', 'white'), (3, 4): ('square', 'black'), (3, 5): ('triangle', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('circle', 'white'), (4, 3): ('circle', 'white'), (4, 4): ('square', 'white'), (4, 5): ('triangle', 'white'), (5, 0): ('square', 'black'), (5, 1): ('triangle', 'black'), (5, 2): ('square', 'white'), (5, 3): ('triangle', 'white'), (5, 4): ('circle', 'white'), (5, 5): ('square', 'black')}, {(0, 0): ('circle', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('circle', 'white'), (0, 3): ('square', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('triangle', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('square', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('triangle', 'white'), (1, 5): ('square', 'black'), (2, 0): ('square', 'white'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'white'), (2, 3): ('circle', 'black'), (2, 4): ('triangle', 'white'), (2, 5): ('triangle', 'white'), (3, 0): ('square', 'white'), (3, 1): ('circle', 'white'), (3, 2): ('square', 'white'), (3, 3): ('square', 'black'), (3, 4): ('square', 'white'), (3, 5): ('square', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('square', 'black'), (4, 2): ('square', 'black'), (4, 3): ('circle', 'black'), (4, 4): ('square', 'white'), (4, 5): ('triangle', 'white'), (5, 0): ('square', 'white'), (5, 1): ('triangle', 'black'), (5, 2): ('square', 'black'), (5, 3): ('circle', 'black'), (5, 4): ('square', 'white'), (5, 5): ('triangle', 'black')}, {(0, 0): ('triangle', 'black'), (0, 1): ('square', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('square', 'black'), (0, 4): ('square', 'white'), (0, 5): ('triangle', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('circle', 'black'), (1, 3): ('circle', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('circle', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('circle', 'black'), (2, 4): ('circle', 'black'), (2, 5): ('circle', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('triangle', 'black'), (3, 2): ('triangle', 'black'), (3, 3): ('triangle', 'white'), (3, 4): ('triangle', 'white'), (3, 5): ('circle', 'black'), (4, 0): ('square', 'white'), (4, 1): ('square', 'white'), (4, 2): ('square', 'black'), (4, 3): ('square', 'black'), (4, 4): ('circle', 'white'), (4, 5): ('triangle', 'black'), (5, 0): ('triangle', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('triangle', 'white'), (5, 3): ('circle', 'white'), (5, 4): ('circle', 'white'), (5, 5): ('square', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('square', 'white'), (0, 3): ('square', 'black'), (0, 4): ('square', 'white'), (0, 5): ('circle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('square', 'black'), (1, 2): ('circle', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('circle', 'black'), (1, 5): ('triangle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('circle', 'white'), (2, 3): ('triangle', 'white'), (2, 4): ('triangle', 'white'), (2, 5): ('circle', 'white'), (3, 0): ('circle', 'white'), (3, 1): ('circle', 'white'), (3, 2): ('circle', 'white'), (3, 3): ('circle', 'black'), (3, 4): ('square', 'black'), (3, 5): ('square', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('circle', 'white'), (4, 2): ('square', 'white'), (4, 3): ('circle', 'white'), (4, 4): ('square', 'black'), (4, 5): ('triangle', 'black'), (5, 0): ('triangle', 'white'), (5, 1): ('triangle', 'black'), (5, 2): ('triangle', 'black'), (5, 3): ('square', 'black'), (5, 4): ('square', 'black'), (5, 5): ('circle', 'black')}]","(6, 6, 5)"
+141.svg,"[{(0, 0): ('triangle', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('triangle', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('square', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('square', 'white'), (1, 4): ('square', 'black'), (1, 5): ('triangle', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('triangle', 'white'), (2, 3): ('triangle', 'white'), (2, 4): ('triangle', 'white'), (2, 5): ('circle', 'black'), (3, 0): ('triangle', 'white'), (3, 1): ('triangle', 'black'), (3, 2): ('square', 'white'), (3, 3): ('triangle', 'white'), (3, 4): ('triangle', 'black'), (3, 5): ('circle', 'black'), (4, 0): ('circle', 'white'), (4, 1): ('circle', 'black'), (4, 2): ('circle', 'white'), (4, 3): ('square', 'black'), (4, 4): ('square', 'black'), (4, 5): ('circle', 'white'), (5, 0): ('triangle', 'black'), (5, 1): ('triangle', 'white'), (5, 2): ('triangle', 'black'), (5, 3): ('square', 'black'), (5, 4): ('circle', 'black'), (5, 5): ('circle', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('square', 'black'), (0, 3): ('square', 'white'), (0, 4): ('triangle', 'black'), (0, 5): ('circle', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('circle', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('triangle', 'black'), (1, 5): ('circle', 'black'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('square', 'black'), (2, 3): ('triangle', 'white'), (2, 4): ('triangle', 'white'), (2, 5): ('circle', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('square', 'black'), (3, 2): ('square', 'white'), (3, 3): ('square', 'white'), (3, 4): ('triangle', 'white'), (3, 5): ('square', 'white'), (4, 0): ('square', 'black'), (4, 1): ('circle', 'white'), (4, 2): ('square', 'white'), (4, 3): ('triangle', 'black'), (4, 4): ('triangle', 'white'), (4, 5): ('square', 'white'), (5, 0): ('triangle', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('circle', 'black'), (5, 3): ('square', 'white'), (5, 4): ('circle', 'black'), (5, 5): ('square', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('square', 'black'), (0, 5): ('circle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'black'), (1, 3): ('square', 'black'), (1, 4): ('circle', 'black'), (1, 5): ('square', 'white'), (2, 0): ('square', 'black'), (2, 1): ('square', 'black'), (2, 2): ('square', 'white'), (2, 3): ('triangle', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('circle', 'black'), (3, 0): ('square', 'white'), (3, 1): ('circle', 'white'), (3, 2): ('circle', 'black'), (3, 3): ('triangle', 'black'), (3, 4): ('circle', 'white'), (3, 5): ('triangle', 'white'), (4, 0): ('circle', 'white'), (4, 1): ('circle', 'black'), (4, 2): ('square', 'white'), (4, 3): ('circle', 'white'), (4, 4): ('triangle', 'black'), (4, 5): ('square', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('square', 'white'), (5, 3): ('square', 'white'), (5, 4): ('square', 'white'), (5, 5): ('square', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('square', 'white'), (0, 2): ('triangle', 'white'), (0, 3): ('circle', 'white'), (0, 4): ('triangle', 'white'), (0, 5): ('square', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'black'), (1, 3): ('square', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('circle', 'white'), (2, 0): ('square', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('square', 'white'), (2, 4): ('square', 'white'), (2, 5): ('triangle', 'white'), (3, 0): ('square', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('circle', 'white'), (3, 3): ('circle', 'white'), (3, 4): ('circle', 'black'), (3, 5): ('square', 'black'), (4, 0): ('circle', 'white'), (4, 1): ('circle', 'black'), (4, 2): ('square', 'white'), (4, 3): ('square', 'white'), (4, 4): ('triangle', 'black'), (4, 5): ('circle', 'black'), (5, 0): ('square', 'black'), (5, 1): ('triangle', 'white'), (5, 2): ('circle', 'white'), (5, 3): ('square', 'black'), (5, 4): ('triangle', 'black'), (5, 5): ('circle', 'black')}, {(0, 0): ('square', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('triangle', 'white'), (0, 4): ('triangle', 'white'), (0, 5): ('square', 'white'), (1, 0): ('square', 'black'), (1, 1): ('square', 'white'), (1, 2): ('square', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('triangle', 'black'), (1, 5): ('circle', 'black'), (2, 0): ('square', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('square', 'black'), (2, 3): ('circle', 'black'), (2, 4): ('triangle', 'white'), (2, 5): ('triangle', 'white'), (3, 0): ('circle', 'black'), (3, 1): ('triangle', 'black'), (3, 2): ('circle', 'white'), (3, 3): ('triangle', 'white'), (3, 4): ('square', 'white'), (3, 5): ('square', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('circle', 'white'), (4, 2): ('circle', 'white'), (4, 3): ('circle', 'white'), (4, 4): ('circle', 'white'), (4, 5): ('square', 'black'), (5, 0): ('square', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('triangle', 'black'), (5, 3): ('square', 'white'), (5, 4): ('circle', 'black'), (5, 5): ('circle', 'white')}]","(6, 6, 5)"
+142.svg,"[{(0, 0): ('triangle', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'white'), (0, 3): ('triangle', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('circle', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('square', 'black'), (1, 5): ('circle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('square', 'black'), (2, 4): ('square', 'white'), (2, 5): ('circle', 'black'), (3, 0): ('square', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('triangle', 'black'), (3, 3): ('circle', 'black'), (3, 4): ('triangle', 'white'), (3, 5): ('circle', 'black'), (4, 0): ('square', 'white'), (4, 1): ('square', 'black'), (4, 2): ('triangle', 'black'), (4, 3): ('triangle', 'white'), (4, 4): ('triangle', 'white'), (4, 5): ('triangle', 'white'), (5, 0): ('square', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('square', 'black'), (5, 3): ('circle', 'white'), (5, 4): ('circle', 'white'), (5, 5): ('circle', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'white'), (0, 3): ('square', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('circle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('square', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('square', 'black'), (1, 4): ('triangle', 'white'), (1, 5): ('square', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('square', 'black'), (2, 2): ('triangle', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('square', 'white'), (2, 5): ('square', 'white'), (3, 0): ('circle', 'white'), (3, 1): ('square', 'black'), (3, 2): ('circle', 'black'), (3, 3): ('square', 'black'), (3, 4): ('square', 'white'), (3, 5): ('circle', 'white'), (4, 0): ('circle', 'black'), (4, 1): ('triangle', 'black'), (4, 2): ('triangle', 'white'), (4, 3): ('circle', 'white'), (4, 4): ('circle', 'black'), (4, 5): ('square', 'black'), (5, 0): ('square', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('triangle', 'white'), (5, 3): ('circle', 'black'), (5, 4): ('circle', 'white'), (5, 5): ('triangle', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('square', 'black'), (0, 3): ('circle', 'white'), (0, 4): ('triangle', 'white'), (0, 5): ('triangle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('circle', 'black'), (1, 3): ('triangle', 'white'), (1, 4): ('square', 'white'), (1, 5): ('circle', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('circle', 'white'), (2, 3): ('square', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('circle', 'black'), (3, 0): ('triangle', 'white'), (3, 1): ('square', 'white'), (3, 2): ('circle', 'black'), (3, 3): ('circle', 'black'), (3, 4): ('triangle', 'white'), (3, 5): ('circle', 'white'), (4, 0): ('circle', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('circle', 'white'), (4, 3): ('triangle', 'white'), (4, 4): ('circle', 'white'), (4, 5): ('square', 'black'), (5, 0): ('circle', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('triangle', 'white'), (5, 3): ('circle', 'white'), (5, 4): ('triangle', 'white'), (5, 5): ('circle', 'black')}, {(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('square', 'white'), (0, 4): ('triangle', 'black'), (0, 5): ('triangle', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('circle', 'white'), (1, 3): ('triangle', 'white'), (1, 4): ('triangle', 'black'), (1, 5): ('square', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('triangle', 'black'), (2, 3): ('square', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('square', 'white'), (3, 0): ('triangle', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('square', 'black'), (3, 3): ('square', 'black'), (3, 4): ('square', 'white'), (3, 5): ('square', 'white'), (4, 0): ('triangle', 'white'), (4, 1): ('square', 'white'), (4, 2): ('square', 'black'), (4, 3): ('square', 'white'), (4, 4): ('circle', 'white'), (4, 5): ('circle', 'black'), (5, 0): ('square', 'white'), (5, 1): ('square', 'black'), (5, 2): ('square', 'white'), (5, 3): ('triangle', 'white'), (5, 4): ('triangle', 'white'), (5, 5): ('triangle', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'black'), (0, 3): ('triangle', 'white'), (0, 4): ('circle', 'black'), (0, 5): ('triangle', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('circle', 'black'), (1, 3): ('triangle', 'black'), (1, 4): ('square', 'black'), (1, 5): ('triangle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('square', 'white'), (2, 4): ('triangle', 'white'), (2, 5): ('triangle', 'black'), (3, 0): ('square', 'black'), (3, 1): ('triangle', 'black'), (3, 2): ('circle', 'black'), (3, 3): ('circle', 'black'), (3, 4): ('square', 'white'), (3, 5): ('square', 'white'), (4, 0): ('square', 'black'), (4, 1): ('triangle', 'white'), (4, 2): ('circle', 'white'), (4, 3): ('triangle', 'black'), (4, 4): ('square', 'white'), (4, 5): ('circle', 'white'), (5, 0): ('triangle', 'black'), (5, 1): ('triangle', 'black'), (5, 2): ('circle', 'black'), (5, 3): ('triangle', 'white'), (5, 4): ('square', 'black'), (5, 5): ('triangle', 'white')}]","(6, 6, 5)"
+143.svg,"[{(0, 0): ('triangle', 'white'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('square', 'black'), (0, 4): ('square', 'black'), (0, 5): ('square', 'white'), (1, 0): ('square', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('triangle', 'white'), (1, 3): ('square', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('circle', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('square', 'black'), (2, 3): ('circle', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('square', 'white'), (3, 0): ('square', 'white'), (3, 1): ('triangle', 'black'), (3, 2): ('triangle', 'white'), (3, 3): ('circle', 'white'), (3, 4): ('circle', 'white'), (3, 5): ('circle', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('triangle', 'black'), (4, 2): ('triangle', 'black'), (4, 3): ('triangle', 'black'), (4, 4): ('triangle', 'white'), (4, 5): ('square', 'white'), (5, 0): ('square', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('triangle', 'black'), (5, 3): ('circle', 'white'), (5, 4): ('triangle', 'black'), (5, 5): ('circle', 'white')}, {(0, 0): ('square', 'black'), (0, 1): ('square', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('circle', 'white'), (0, 4): ('circle', 'white'), (0, 5): ('triangle', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('square', 'white'), (1, 5): ('triangle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('triangle', 'black'), (2, 3): ('square', 'black'), (2, 4): ('square', 'white'), (2, 5): ('circle', 'black'), (3, 0): ('circle', 'white'), (3, 1): ('circle', 'black'), (3, 2): ('triangle', 'black'), (3, 3): ('triangle', 'white'), (3, 4): ('triangle', 'white'), (3, 5): ('square', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('square', 'black'), (4, 2): ('circle', 'black'), (4, 3): ('square', 'black'), (4, 4): ('circle', 'white'), (4, 5): ('triangle', 'black'), (5, 0): ('circle', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('triangle', 'white'), (5, 3): ('triangle', 'black'), (5, 4): ('circle', 'black'), (5, 5): ('square', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('square', 'white'), (0, 2): ('square', 'white'), (0, 3): ('triangle', 'white'), (0, 4): ('square', 'white'), (0, 5): ('triangle', 'white'), (1, 0): ('triangle', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('square', 'black'), (1, 5): ('triangle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('square', 'black'), (2, 3): ('square', 'white'), (2, 4): ('square', 'black'), (2, 5): ('circle', 'white'), (3, 0): ('square', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('square', 'white'), (3, 3): ('triangle', 'black'), (3, 4): ('triangle', 'white'), (3, 5): ('triangle', 'black'), (4, 0): ('square', 'black'), (4, 1): ('square', 'black'), (4, 2): ('triangle', 'white'), (4, 3): ('square', 'black'), (4, 4): ('square', 'white'), (4, 5): ('square', 'white'), (5, 0): ('circle', 'white'), (5, 1): ('square', 'black'), (5, 2): ('triangle', 'black'), (5, 3): ('square', 'white'), (5, 4): ('square', 'black'), (5, 5): ('circle', 'white')}, {(0, 0): ('circle', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('square', 'black'), (0, 3): ('circle', 'white'), (0, 4): ('square', 'black'), (0, 5): ('square', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('square', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('square', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('square', 'black'), (2, 0): ('square', 'black'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('triangle', 'black'), (2, 4): ('square', 'black'), (2, 5): ('square', 'black'), (3, 0): ('circle', 'black'), (3, 1): ('circle', 'white'), (3, 2): ('circle', 'white'), (3, 3): ('triangle', 'white'), (3, 4): ('circle', 'black'), (3, 5): ('circle', 'white'), (4, 0): ('circle', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('square', 'white'), (4, 3): ('triangle', 'white'), (4, 4): ('square', 'white'), (4, 5): ('triangle', 'black'), (5, 0): ('square', 'white'), (5, 1): ('square', 'black'), (5, 2): ('square', 'white'), (5, 3): ('triangle', 'black'), (5, 4): ('triangle', 'white'), (5, 5): ('circle', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('triangle', 'black'), (0, 3): ('square', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('square', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'black'), (1, 3): ('circle', 'white'), (1, 4): ('square', 'black'), (1, 5): ('square', 'white'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('square', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('square', 'black'), (2, 5): ('square', 'white'), (3, 0): ('square', 'black'), (3, 1): ('square', 'black'), (3, 2): ('triangle', 'black'), (3, 3): ('square', 'black'), (3, 4): ('triangle', 'black'), (3, 5): ('triangle', 'white'), (4, 0): ('square', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('circle', 'black'), (4, 3): ('circle', 'white'), (4, 4): ('triangle', 'white'), (4, 5): ('circle', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('square', 'black'), (5, 2): ('circle', 'white'), (5, 3): ('triangle', 'black'), (5, 4): ('square', 'white'), (5, 5): ('triangle', 'black')}]","(6, 6, 5)"
+144.svg,"[{(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('triangle', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('circle', 'black'), (0, 5): ('circle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('square', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('square', 'white'), (1, 4): ('triangle', 'black'), (1, 5): ('triangle', 'black'), (2, 0): ('square', 'white'), (2, 1): ('square', 'white'), (2, 2): ('square', 'black'), (2, 3): ('triangle', 'black'), (2, 4): ('circle', 'white'), (2, 5): ('circle', 'white'), (3, 0): ('square', 'white'), (3, 1): ('square', 'white'), (3, 2): ('circle', 'black'), (3, 3): ('circle', 'black'), (3, 4): ('square', 'white'), (3, 5): ('square', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('square', 'white'), (4, 3): ('square', 'black'), (4, 4): ('triangle', 'black'), (4, 5): ('square', 'black'), (5, 0): ('square', 'black'), (5, 1): ('square', 'white'), (5, 2): ('square', 'black'), (5, 3): ('triangle', 'white'), (5, 4): ('square', 'white'), (5, 5): ('square', 'black')}, {(0, 0): ('square', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'white'), (0, 3): ('square', 'black'), (0, 4): ('circle', 'black'), (0, 5): ('circle', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('square', 'black'), (1, 2): ('triangle', 'black'), (1, 3): ('circle', 'white'), (1, 4): ('triangle', 'black'), (1, 5): ('circle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('square', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('triangle', 'white'), (3, 0): ('square', 'white'), (3, 1): ('triangle', 'white'), (3, 2): ('triangle', 'white'), (3, 3): ('square', 'black'), (3, 4): ('square', 'black'), (3, 5): ('triangle', 'black'), (4, 0): ('square', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('square', 'black'), (4, 3): ('triangle', 'black'), (4, 4): ('circle', 'black'), (4, 5): ('triangle', 'white'), (5, 0): ('square', 'black'), (5, 1): ('triangle', 'black'), (5, 2): ('circle', 'black'), (5, 3): ('triangle', 'black'), (5, 4): ('triangle', 'white'), (5, 5): ('triangle', 'white')}, {(0, 0): ('square', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('square', 'white'), (0, 3): ('square', 'black'), (0, 4): ('square', 'white'), (0, 5): ('square', 'black'), (1, 0): ('square', 'white'), (1, 1): ('square', 'white'), (1, 2): ('triangle', 'black'), (1, 3): ('circle', 'white'), (1, 4): ('triangle', 'white'), (1, 5): ('circle', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('square', 'black'), (2, 5): ('square', 'black'), (3, 0): ('triangle', 'white'), (3, 1): ('square', 'white'), (3, 2): ('circle', 'black'), (3, 3): ('circle', 'black'), (3, 4): ('triangle', 'black'), (3, 5): ('circle', 'white'), (4, 0): ('circle', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('triangle', 'black'), (4, 3): ('square', 'black'), (4, 4): ('circle', 'black'), (4, 5): ('square', 'black'), (5, 0): ('square', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('square', 'white'), (5, 3): ('triangle', 'white'), (5, 4): ('square', 'black'), (5, 5): ('circle', 'white')}, {(0, 0): ('triangle', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('circle', 'white'), (0, 4): ('triangle', 'black'), (0, 5): ('square', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('square', 'black'), (1, 4): ('triangle', 'white'), (1, 5): ('circle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('triangle', 'white'), (2, 5): ('triangle', 'white'), (3, 0): ('circle', 'white'), (3, 1): ('square', 'white'), (3, 2): ('triangle', 'white'), (3, 3): ('square', 'black'), (3, 4): ('triangle', 'black'), (3, 5): ('triangle', 'white'), (4, 0): ('circle', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('triangle', 'white'), (4, 3): ('triangle', 'white'), (4, 4): ('square', 'black'), (4, 5): ('square', 'white'), (5, 0): ('triangle', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('square', 'white'), (5, 3): ('circle', 'white'), (5, 4): ('triangle', 'black'), (5, 5): ('square', 'black')}, {(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('triangle', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('circle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('square', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('square', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('square', 'black'), (2, 5): ('circle', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('circle', 'white'), (3, 3): ('triangle', 'white'), (3, 4): ('square', 'white'), (3, 5): ('circle', 'white'), (4, 0): ('square', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('square', 'black'), (4, 3): ('square', 'white'), (4, 4): ('square', 'black'), (4, 5): ('square', 'black'), (5, 0): ('circle', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('circle', 'black'), (5, 3): ('triangle', 'white'), (5, 4): ('circle', 'white'), (5, 5): ('triangle', 'white')}]","(6, 6, 5)"
+145.svg,"[{(0, 0): ('triangle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'white'), (0, 3): ('square', 'white'), (0, 4): ('square', 'white'), (0, 5): ('circle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('triangle', 'white'), (1, 3): ('square', 'black'), (1, 4): ('square', 'white'), (1, 5): ('triangle', 'white'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('circle', 'white'), (2, 3): ('circle', 'black'), (2, 4): ('circle', 'black'), (2, 5): ('square', 'black'), (3, 0): ('square', 'white'), (3, 1): ('triangle', 'white'), (3, 2): ('triangle', 'white'), (3, 3): ('circle', 'black'), (3, 4): ('triangle', 'black'), (3, 5): ('square', 'black'), (4, 0): ('square', 'black'), (4, 1): ('square', 'white'), (4, 2): ('square', 'white'), (4, 3): ('triangle', 'black'), (4, 4): ('triangle', 'white'), (4, 5): ('triangle', 'white'), (5, 0): ('triangle', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('circle', 'black'), (5, 3): ('circle', 'black'), (5, 4): ('triangle', 'black'), (5, 5): ('triangle', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'white'), (0, 3): ('triangle', 'white'), (0, 4): ('triangle', 'black'), (0, 5): ('triangle', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('triangle', 'black'), (1, 3): ('circle', 'white'), (1, 4): ('square', 'white'), (1, 5): ('triangle', 'black'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('square', 'white'), (2, 3): ('circle', 'black'), (2, 4): ('circle', 'black'), (2, 5): ('square', 'white'), (3, 0): ('triangle', 'black'), (3, 1): ('square', 'black'), (3, 2): ('triangle', 'black'), (3, 3): ('square', 'white'), (3, 4): ('triangle', 'black'), (3, 5): ('circle', 'white'), (4, 0): ('square', 'white'), (4, 1): ('circle', 'black'), (4, 2): ('circle', 'white'), (4, 3): ('square', 'black'), (4, 4): ('circle', 'black'), (4, 5): ('circle', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('square', 'black'), (5, 2): ('circle', 'white'), (5, 3): ('triangle', 'white'), (5, 4): ('triangle', 'black'), (5, 5): ('square', 'white')}, {(0, 0): ('circle', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('circle', 'white'), (0, 4): ('square', 'black'), (0, 5): ('triangle', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('square', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('circle', 'black'), (1, 5): ('triangle', 'black'), (2, 0): ('square', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('triangle', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('triangle', 'white'), (2, 5): ('circle', 'white'), (3, 0): ('square', 'white'), (3, 1): ('triangle', 'black'), (3, 2): ('circle', 'black'), (3, 3): ('square', 'black'), (3, 4): ('circle', 'black'), (3, 5): ('triangle', 'black'), (4, 0): ('square', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('square', 'black'), (4, 3): ('square', 'black'), (4, 4): ('square', 'black'), (4, 5): ('triangle', 'black'), (5, 0): ('circle', 'black'), (5, 1): ('triangle', 'white'), (5, 2): ('circle', 'black'), (5, 3): ('circle', 'black'), (5, 4): ('circle', 'white'), (5, 5): ('circle', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('square', 'white'), (0, 5): ('triangle', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('square', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('square', 'white'), (1, 5): ('triangle', 'black'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('triangle', 'black'), (2, 3): ('triangle', 'white'), (2, 4): ('triangle', 'white'), (2, 5): ('square', 'white'), (3, 0): ('triangle', 'black'), (3, 1): ('triangle', 'black'), (3, 2): ('square', 'black'), (3, 3): ('triangle', 'black'), (3, 4): ('circle', 'black'), (3, 5): ('square', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('triangle', 'white'), (4, 2): ('square', 'white'), (4, 3): ('triangle', 'black'), (4, 4): ('circle', 'white'), (4, 5): ('circle', 'black'), (5, 0): ('circle', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('square', 'white'), (5, 3): ('triangle', 'black'), (5, 4): ('triangle', 'white'), (5, 5): ('triangle', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'white'), (0, 3): ('triangle', 'black'), (0, 4): ('square', 'black'), (0, 5): ('square', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'white'), (1, 3): ('triangle', 'white'), (1, 4): ('triangle', 'white'), (1, 5): ('square', 'black'), (2, 0): ('square', 'black'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('triangle', 'black'), (2, 4): ('circle', 'black'), (2, 5): ('square', 'white'), (3, 0): ('circle', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('triangle', 'black'), (3, 3): ('square', 'black'), (3, 4): ('circle', 'white'), (3, 5): ('circle', 'white'), (4, 0): ('triangle', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('triangle', 'black'), (4, 3): ('circle', 'black'), (4, 4): ('circle', 'black'), (4, 5): ('circle', 'black'), (5, 0): ('circle', 'white'), (5, 1): ('triangle', 'black'), (5, 2): ('square', 'white'), (5, 3): ('circle', 'black'), (5, 4): ('circle', 'black'), (5, 5): ('triangle', 'black')}]","(6, 6, 5)"
+146.svg,"[{(0, 0): ('triangle', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('triangle', 'white'), (0, 4): ('circle', 'black'), (0, 5): ('square', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('triangle', 'black'), (1, 3): ('square', 'black'), (1, 4): ('triangle', 'white'), (1, 5): ('square', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('circle', 'black'), (2, 4): ('circle', 'white'), (2, 5): ('circle', 'white'), (3, 0): ('circle', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('triangle', 'white'), (3, 3): ('square', 'black'), (3, 4): ('triangle', 'white'), (3, 5): ('triangle', 'white'), (4, 0): ('square', 'white'), (4, 1): ('triangle', 'black'), (4, 2): ('square', 'black'), (4, 3): ('square', 'white'), (4, 4): ('triangle', 'black'), (4, 5): ('square', 'white'), (5, 0): ('triangle', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('square', 'white'), (5, 3): ('circle', 'black'), (5, 4): ('triangle', 'black'), (5, 5): ('circle', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('square', 'white'), (0, 3): ('circle', 'white'), (0, 4): ('square', 'black'), (0, 5): ('square', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('square', 'white'), (1, 2): ('square', 'black'), (1, 3): ('circle', 'white'), (1, 4): ('square', 'white'), (1, 5): ('circle', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('triangle', 'white'), (2, 3): ('square', 'white'), (2, 4): ('square', 'white'), (2, 5): ('circle', 'black'), (3, 0): ('square', 'white'), (3, 1): ('circle', 'black'), (3, 2): ('circle', 'black'), (3, 3): ('square', 'black'), (3, 4): ('square', 'white'), (3, 5): ('triangle', 'black'), (4, 0): ('square', 'black'), (4, 1): ('square', 'white'), (4, 2): ('circle', 'white'), (4, 3): ('square', 'black'), (4, 4): ('triangle', 'white'), (4, 5): ('circle', 'white'), (5, 0): ('triangle', 'black'), (5, 1): ('triangle', 'white'), (5, 2): ('triangle', 'white'), (5, 3): ('square', 'black'), (5, 4): ('circle', 'white'), (5, 5): ('circle', 'black')}, {(0, 0): ('square', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'white'), (0, 3): ('square', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('triangle', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('square', 'black'), (1, 4): ('triangle', 'white'), (1, 5): ('circle', 'black'), (2, 0): ('square', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('triangle', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('square', 'black'), (2, 5): ('square', 'black'), (3, 0): ('square', 'white'), (3, 1): ('square', 'black'), (3, 2): ('square', 'black'), (3, 3): ('square', 'white'), (3, 4): ('square', 'white'), (3, 5): ('triangle', 'black'), (4, 0): ('triangle', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('circle', 'white'), (4, 3): ('square', 'white'), (4, 4): ('square', 'black'), (4, 5): ('square', 'black'), (5, 0): ('circle', 'black'), (5, 1): ('triangle', 'black'), (5, 2): ('square', 'white'), (5, 3): ('circle', 'black'), (5, 4): ('triangle', 'white'), (5, 5): ('square', 'black')}, {(0, 0): ('circle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('square', 'white'), (0, 3): ('square', 'white'), (0, 4): ('circle', 'white'), (0, 5): ('triangle', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('triangle', 'black'), (1, 3): ('triangle', 'white'), (1, 4): ('square', 'black'), (1, 5): ('square', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('circle', 'white'), (2, 3): ('circle', 'black'), (2, 4): ('triangle', 'white'), (2, 5): ('square', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('triangle', 'black'), (3, 2): ('square', 'black'), (3, 3): ('triangle', 'black'), (3, 4): ('triangle', 'black'), (3, 5): ('triangle', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('triangle', 'white'), (4, 2): ('circle', 'white'), (4, 3): ('square', 'black'), (4, 4): ('circle', 'white'), (4, 5): ('triangle', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('square', 'black'), (5, 2): ('circle', 'black'), (5, 3): ('circle', 'white'), (5, 4): ('square', 'black'), (5, 5): ('triangle', 'white')}, {(0, 0): ('triangle', 'black'), (0, 1): ('square', 'white'), (0, 2): ('triangle', 'black'), (0, 3): ('triangle', 'white'), (0, 4): ('circle', 'white'), (0, 5): ('circle', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'black'), (1, 3): ('circle', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('square', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('square', 'black'), (2, 3): ('triangle', 'white'), (2, 4): ('square', 'white'), (2, 5): ('circle', 'white'), (3, 0): ('square', 'black'), (3, 1): ('square', 'black'), (3, 2): ('circle', 'white'), (3, 3): ('circle', 'black'), (3, 4): ('triangle', 'white'), (3, 5): ('square', 'white'), (4, 0): ('square', 'white'), (4, 1): ('square', 'white'), (4, 2): ('square', 'white'), (4, 3): ('triangle', 'black'), (4, 4): ('triangle', 'white'), (4, 5): ('circle', 'black'), (5, 0): ('square', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('square', 'black'), (5, 3): ('circle', 'white'), (5, 4): ('square', 'black'), (5, 5): ('square', 'black')}]","(6, 6, 5)"
+147.svg,"[{(0, 0): ('triangle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'black'), (0, 3): ('square', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('triangle', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('triangle', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('triangle', 'white'), (1, 5): ('square', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'white'), (2, 3): ('circle', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('square', 'white'), (3, 0): ('square', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('circle', 'white'), (3, 3): ('triangle', 'black'), (3, 4): ('square', 'white'), (3, 5): ('triangle', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('triangle', 'white'), (4, 2): ('square', 'black'), (4, 3): ('square', 'black'), (4, 4): ('circle', 'black'), (4, 5): ('circle', 'black'), (5, 0): ('circle', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('circle', 'black'), (5, 3): ('circle', 'black'), (5, 4): ('triangle', 'white'), (5, 5): ('triangle', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('triangle', 'white'), (0, 4): ('triangle', 'black'), (0, 5): ('circle', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('square', 'black'), (1, 2): ('square', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('circle', 'black'), (1, 5): ('square', 'white'), (2, 0): ('square', 'black'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('square', 'black'), (2, 4): ('circle', 'white'), (2, 5): ('circle', 'black'), (3, 0): ('square', 'black'), (3, 1): ('square', 'black'), (3, 2): ('triangle', 'white'), (3, 3): ('square', 'black'), (3, 4): ('triangle', 'black'), (3, 5): ('square', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('triangle', 'white'), (4, 2): ('square', 'black'), (4, 3): ('triangle', 'white'), (4, 4): ('square', 'black'), (4, 5): ('triangle', 'black'), (5, 0): ('square', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('circle', 'white'), (5, 3): ('triangle', 'white'), (5, 4): ('triangle', 'black'), (5, 5): ('square', 'black')}, {(0, 0): ('triangle', 'black'), (0, 1): ('square', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('square', 'white'), (0, 5): ('triangle', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('square', 'black'), (1, 5): ('triangle', 'black'), (2, 0): ('square', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('square', 'black'), (2, 3): ('triangle', 'black'), (2, 4): ('square', 'white'), (2, 5): ('triangle', 'black'), (3, 0): ('square', 'white'), (3, 1): ('circle', 'white'), (3, 2): ('triangle', 'black'), (3, 3): ('circle', 'white'), (3, 4): ('circle', 'black'), (3, 5): ('square', 'white'), (4, 0): ('circle', 'black'), (4, 1): ('square', 'white'), (4, 2): ('square', 'white'), (4, 3): ('triangle', 'white'), (4, 4): ('square', 'white'), (4, 5): ('triangle', 'black'), (5, 0): ('circle', 'black'), (5, 1): ('triangle', 'black'), (5, 2): ('square', 'black'), (5, 3): ('triangle', 'white'), (5, 4): ('triangle', 'black'), (5, 5): ('triangle', 'black')}, {(0, 0): ('triangle', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('triangle', 'black'), (0, 3): ('circle', 'white'), (0, 4): ('circle', 'black'), (0, 5): ('circle', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('square', 'black'), (1, 2): ('triangle', 'black'), (1, 3): ('circle', 'white'), (1, 4): ('triangle', 'white'), (1, 5): ('square', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('square', 'white'), (2, 2): ('square', 'white'), (2, 3): ('square', 'white'), (2, 4): ('triangle', 'white'), (2, 5): ('triangle', 'black'), (3, 0): ('circle', 'white'), (3, 1): ('triangle', 'white'), (3, 2): ('circle', 'white'), (3, 3): ('triangle', 'black'), (3, 4): ('triangle', 'black'), (3, 5): ('square', 'white'), (4, 0): ('circle', 'black'), (4, 1): ('square', 'black'), (4, 2): ('circle', 'black'), (4, 3): ('square', 'black'), (4, 4): ('square', 'black'), (4, 5): ('circle', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('triangle', 'white'), (5, 3): ('square', 'black'), (5, 4): ('square', 'white'), (5, 5): ('square', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('triangle', 'white'), (0, 3): ('triangle', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('triangle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('square', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('circle', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('square', 'black'), (2, 2): ('square', 'black'), (2, 3): ('circle', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('square', 'black'), (3, 0): ('square', 'white'), (3, 1): ('triangle', 'black'), (3, 2): ('triangle', 'black'), (3, 3): ('square', 'black'), (3, 4): ('triangle', 'black'), (3, 5): ('circle', 'white'), (4, 0): ('circle', 'black'), (4, 1): ('triangle', 'white'), (4, 2): ('triangle', 'black'), (4, 3): ('triangle', 'white'), (4, 4): ('square', 'black'), (4, 5): ('square', 'white'), (5, 0): ('square', 'black'), (5, 1): ('triangle', 'white'), (5, 2): ('square', 'black'), (5, 3): ('triangle', 'black'), (5, 4): ('circle', 'black'), (5, 5): ('square', 'white')}]","(6, 6, 5)"
+148.svg,"[{(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('square', 'black'), (0, 4): ('circle', 'black'), (0, 5): ('circle', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('square', 'black'), (1, 3): ('triangle', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('triangle', 'black'), (2, 0): ('square', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('circle', 'black'), (2, 3): ('circle', 'black'), (2, 4): ('square', 'white'), (2, 5): ('circle', 'white'), (3, 0): ('triangle', 'black'), (3, 1): ('circle', 'white'), (3, 2): ('square', 'white'), (3, 3): ('square', 'black'), (3, 4): ('square', 'white'), (3, 5): ('triangle', 'white'), (4, 0): ('triangle', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('triangle', 'white'), (4, 3): ('triangle', 'white'), (4, 4): ('square', 'black'), (4, 5): ('triangle', 'black'), (5, 0): ('square', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('circle', 'white'), (5, 3): ('triangle', 'black'), (5, 4): ('circle', 'black'), (5, 5): ('circle', 'white')}, {(0, 0): ('circle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('triangle', 'white'), (0, 4): ('square', 'black'), (0, 5): ('square', 'white'), (1, 0): ('triangle', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'black'), (1, 3): ('square', 'black'), (1, 4): ('square', 'black'), (1, 5): ('circle', 'black'), (2, 0): ('square', 'white'), (2, 1): ('square', 'white'), (2, 2): ('square', 'white'), (2, 3): ('circle', 'black'), (2, 4): ('triangle', 'white'), (2, 5): ('circle', 'white'), (3, 0): ('circle', 'black'), (3, 1): ('square', 'white'), (3, 2): ('triangle', 'white'), (3, 3): ('square', 'black'), (3, 4): ('circle', 'black'), (3, 5): ('square', 'black'), (4, 0): ('square', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('circle', 'black'), (4, 3): ('circle', 'white'), (4, 4): ('square', 'white'), (4, 5): ('circle', 'black'), (5, 0): ('circle', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('square', 'black'), (5, 3): ('circle', 'white'), (5, 4): ('triangle', 'white'), (5, 5): ('circle', 'white')}, {(0, 0): ('circle', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('square', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('circle', 'black'), (0, 5): ('square', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('square', 'black'), (1, 2): ('circle', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('triangle', 'black'), (1, 5): ('square', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('triangle', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('circle', 'black'), (3, 0): ('square', 'white'), (3, 1): ('circle', 'black'), (3, 2): ('triangle', 'white'), (3, 3): ('square', 'white'), (3, 4): ('circle', 'white'), (3, 5): ('circle', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('triangle', 'white'), (4, 2): ('circle', 'black'), (4, 3): ('circle', 'black'), (4, 4): ('circle', 'black'), (4, 5): ('square', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('square', 'black'), (5, 3): ('circle', 'white'), (5, 4): ('circle', 'white'), (5, 5): ('circle', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('square', 'white'), (0, 3): ('triangle', 'black'), (0, 4): ('circle', 'black'), (0, 5): ('circle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('square', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('square', 'white'), (1, 5): ('square', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('square', 'black'), (2, 3): ('triangle', 'white'), (2, 4): ('square', 'white'), (2, 5): ('circle', 'black'), (3, 0): ('triangle', 'white'), (3, 1): ('circle', 'white'), (3, 2): ('square', 'white'), (3, 3): ('triangle', 'white'), (3, 4): ('square', 'white'), (3, 5): ('circle', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('circle', 'white'), (4, 3): ('circle', 'black'), (4, 4): ('triangle', 'black'), (4, 5): ('circle', 'white'), (5, 0): ('square', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('triangle', 'white'), (5, 3): ('square', 'white'), (5, 4): ('square', 'white'), (5, 5): ('square', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('triangle', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('circle', 'black'), (0, 5): ('circle', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('triangle', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('triangle', 'white'), (1, 5): ('square', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('triangle', 'white'), (2, 5): ('triangle', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('square', 'black'), (3, 3): ('circle', 'black'), (3, 4): ('circle', 'black'), (3, 5): ('square', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('square', 'white'), (4, 2): ('circle', 'white'), (4, 3): ('circle', 'white'), (4, 4): ('square', 'black'), (4, 5): ('circle', 'black'), (5, 0): ('triangle', 'white'), (5, 1): ('triangle', 'black'), (5, 2): ('square', 'black'), (5, 3): ('square', 'black'), (5, 4): ('square', 'white'), (5, 5): ('circle', 'white')}]","(6, 6, 5)"
+149.svg,"[{(0, 0): ('circle', 'black'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('circle', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'white'), (1, 3): ('square', 'black'), (1, 4): ('circle', 'black'), (1, 5): ('triangle', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('square', 'black'), (2, 3): ('circle', 'black'), (2, 4): ('circle', 'black'), (2, 5): ('circle', 'black'), (3, 0): ('square', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('square', 'white'), (3, 3): ('square', 'black'), (3, 4): ('square', 'white'), (3, 5): ('triangle', 'white'), (4, 0): ('triangle', 'white'), (4, 1): ('square', 'white'), (4, 2): ('square', 'white'), (4, 3): ('square', 'white'), (4, 4): ('square', 'black'), (4, 5): ('triangle', 'white'), (5, 0): ('triangle', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('square', 'white'), (5, 3): ('circle', 'white'), (5, 4): ('triangle', 'white'), (5, 5): ('square', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('square', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('circle', 'white'), (0, 4): ('square', 'white'), (0, 5): ('circle', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('square', 'white'), (1, 2): ('square', 'black'), (1, 3): ('square', 'white'), (1, 4): ('triangle', 'black'), (1, 5): ('circle', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('triangle', 'white'), (2, 4): ('square', 'black'), (2, 5): ('circle', 'black'), (3, 0): ('circle', 'white'), (3, 1): ('circle', 'black'), (3, 2): ('circle', 'white'), (3, 3): ('triangle', 'white'), (3, 4): ('square', 'white'), (3, 5): ('triangle', 'white'), (4, 0): ('circle', 'white'), (4, 1): ('circle', 'black'), (4, 2): ('triangle', 'black'), (4, 3): ('square', 'black'), (4, 4): ('triangle', 'black'), (4, 5): ('triangle', 'black'), (5, 0): ('square', 'black'), (5, 1): ('triangle', 'white'), (5, 2): ('circle', 'black'), (5, 3): ('triangle', 'black'), (5, 4): ('triangle', 'white'), (5, 5): ('square', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('square', 'white'), (0, 3): ('triangle', 'white'), (0, 4): ('square', 'white'), (0, 5): ('triangle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'white'), (1, 3): ('triangle', 'white'), (1, 4): ('triangle', 'white'), (1, 5): ('square', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('triangle', 'black'), (2, 4): ('circle', 'black'), (2, 5): ('square', 'black'), (3, 0): ('square', 'white'), (3, 1): ('square', 'white'), (3, 2): ('square', 'white'), (3, 3): ('circle', 'black'), (3, 4): ('square', 'white'), (3, 5): ('square', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('square', 'white'), (4, 2): ('square', 'white'), (4, 3): ('triangle', 'black'), (4, 4): ('square', 'white'), (4, 5): ('circle', 'black'), (5, 0): ('triangle', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('circle', 'black'), (5, 3): ('square', 'white'), (5, 4): ('circle', 'black'), (5, 5): ('square', 'black')}, {(0, 0): ('square', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('square', 'white'), (0, 5): ('triangle', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('square', 'white'), (1, 5): ('circle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('triangle', 'white'), (2, 3): ('square', 'white'), (2, 4): ('circle', 'white'), (2, 5): ('triangle', 'black'), (3, 0): ('square', 'white'), (3, 1): ('triangle', 'black'), (3, 2): ('square', 'black'), (3, 3): ('circle', 'black'), (3, 4): ('triangle', 'white'), (3, 5): ('triangle', 'white'), (4, 0): ('circle', 'black'), (4, 1): ('square', 'black'), (4, 2): ('triangle', 'black'), (4, 3): ('triangle', 'black'), (4, 4): ('square', 'black'), (4, 5): ('triangle', 'black'), (5, 0): ('square', 'white'), (5, 1): ('triangle', 'white'), (5, 2): ('square', 'white'), (5, 3): ('triangle', 'black'), (5, 4): ('triangle', 'black'), (5, 5): ('square', 'black')}, {(0, 0): ('circle', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('square', 'black'), (0, 3): ('square', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('square', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'black'), (1, 3): ('circle', 'white'), (1, 4): ('triangle', 'white'), (1, 5): ('square', 'black'), (2, 0): ('square', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('triangle', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('square', 'white'), (2, 5): ('triangle', 'black'), (3, 0): ('circle', 'white'), (3, 1): ('circle', 'black'), (3, 2): ('triangle', 'black'), (3, 3): ('circle', 'black'), (3, 4): ('circle', 'black'), (3, 5): ('triangle', 'black'), (4, 0): ('triangle', 'white'), (4, 1): ('square', 'white'), (4, 2): ('circle', 'black'), (4, 3): ('circle', 'white'), (4, 4): ('circle', 'black'), (4, 5): ('circle', 'black'), (5, 0): ('square', 'black'), (5, 1): ('triangle', 'white'), (5, 2): ('triangle', 'white'), (5, 3): ('square', 'black'), (5, 4): ('square', 'white'), (5, 5): ('triangle', 'white')}]","(6, 6, 5)"
+150.svg,"[{(0, 0): ('square', 'black'), (0, 1): ('square', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('circle', 'white'), (0, 4): ('square', 'white'), (0, 5): ('square', 'white'), (0, 6): ('circle', 'black'), (0, 7): ('triangle', 'black'), (0, 8): ('triangle', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'black'), (1, 3): ('triangle', 'white'), (1, 4): ('square', 'black'), (1, 5): ('triangle', 'black'), (1, 6): ('square', 'black'), (1, 7): ('circle', 'white'), (1, 8): ('circle', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('square', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('triangle', 'white'), (2, 5): ('triangle', 'black'), (2, 6): ('square', 'black'), (2, 7): ('circle', 'black'), (2, 8): ('square', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('circle', 'white'), (3, 2): ('triangle', 'white'), (3, 3): ('triangle', 'black'), (3, 4): ('circle', 'black'), (3, 5): ('triangle', 'black'), (3, 6): ('square', 'black'), (3, 7): ('square', 'black'), (3, 8): ('triangle', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('triangle', 'black'), (4, 3): ('triangle', 'white'), (4, 4): ('square', 'black'), (4, 5): ('square', 'white'), (4, 6): ('triangle', 'black'), (4, 7): ('square', 'white'), (4, 8): ('circle', 'black'), (5, 0): ('circle', 'black'), (5, 1): ('triangle', 'white'), (5, 2): ('circle', 'black'), (5, 3): ('square', 'white'), (5, 4): ('square', 'white'), (5, 5): ('circle', 'white'), (5, 6): ('square', 'black'), (5, 7): ('triangle', 'white'), (5, 8): ('circle', 'black')}]","(6, 9, 1)"
+151.svg,"[{(0, 0): ('circle', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('square', 'white'), (0, 3): ('triangle', 'white'), (0, 4): ('square', 'white'), (0, 5): ('circle', 'white'), (0, 6): ('square', 'white'), (0, 7): ('triangle', 'black'), (0, 8): ('circle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('square', 'black'), (1, 3): ('triangle', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('triangle', 'black'), (1, 6): ('circle', 'black'), (1, 7): ('circle', 'white'), (1, 8): ('circle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('triangle', 'white'), (2, 3): ('square', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('square', 'black'), (2, 6): ('square', 'black'), (2, 7): ('circle', 'black'), (2, 8): ('triangle', 'white'), (3, 0): ('circle', 'white'), (3, 1): ('triangle', 'black'), (3, 2): ('circle', 'white'), (3, 3): ('triangle', 'white'), (3, 4): ('square', 'white'), (3, 5): ('triangle', 'black'), (3, 6): ('triangle', 'black'), (3, 7): ('circle', 'white'), (3, 8): ('circle', 'black'), (4, 0): ('circle', 'white'), (4, 1): ('square', 'white'), (4, 2): ('triangle', 'white'), (4, 3): ('triangle', 'white'), (4, 4): ('circle', 'black'), (4, 5): ('square', 'black'), (4, 6): ('circle', 'white'), (4, 7): ('square', 'black'), (4, 8): ('square', 'black'), (5, 0): ('circle', 'black'), (5, 1): ('triangle', 'white'), (5, 2): ('circle', 'white'), (5, 3): ('triangle', 'white'), (5, 4): ('circle', 'white'), (5, 5): ('triangle', 'black'), (5, 6): ('square', 'white'), (5, 7): ('triangle', 'black'), (5, 8): ('square', 'black')}]","(6, 9, 1)"
+152.svg,"[{(0, 0): ('triangle', 'black'), (0, 1): ('square', 'white'), (0, 2): ('square', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('square', 'black'), (0, 5): ('square', 'white'), (0, 6): ('triangle', 'white'), (0, 7): ('square', 'white'), (0, 8): ('triangle', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('square', 'black'), (1, 2): ('square', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('triangle', 'white'), (1, 5): ('triangle', 'white'), (1, 6): ('triangle', 'white'), (1, 7): ('triangle', 'black'), (1, 8): ('square', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('square', 'black'), (2, 3): ('square', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('circle', 'black'), (2, 6): ('square', 'black'), (2, 7): ('triangle', 'white'), (2, 8): ('circle', 'white'), (3, 0): ('circle', 'white'), (3, 1): ('square', 'black'), (3, 2): ('circle', 'black'), (3, 3): ('square', 'black'), (3, 4): ('square', 'black'), (3, 5): ('circle', 'black'), (3, 6): ('square', 'white'), (3, 7): ('triangle', 'white'), (3, 8): ('triangle', 'black'), (4, 0): ('square', 'white'), (4, 1): ('circle', 'black'), (4, 2): ('circle', 'black'), (4, 3): ('square', 'white'), (4, 4): ('square', 'white'), (4, 5): ('triangle', 'black'), (4, 6): ('square', 'black'), (4, 7): ('triangle', 'black'), (4, 8): ('triangle', 'black'), (5, 0): ('square', 'white'), (5, 1): ('triangle', 'black'), (5, 2): ('square', 'black'), (5, 3): ('square', 'black'), (5, 4): ('triangle', 'black'), (5, 5): ('triangle', 'white'), (5, 6): ('square', 'black'), (5, 7): ('square', 'white'), (5, 8): ('square', 'black')}]","(6, 9, 1)"
+153.svg,"[{(0, 0): ('triangle', 'black'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('circle', 'black'), (0, 5): ('triangle', 'black'), (0, 6): ('circle', 'white'), (0, 7): ('circle', 'black'), (0, 8): ('square', 'white'), (1, 0): ('square', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'white'), (1, 3): ('square', 'white'), (1, 4): ('triangle', 'black'), (1, 5): ('circle', 'black'), (1, 6): ('square', 'white'), (1, 7): ('circle', 'black'), (1, 8): ('circle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('triangle', 'white'), (2, 3): ('square', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('circle', 'white'), (2, 6): ('circle', 'black'), (2, 7): ('circle', 'white'), (2, 8): ('triangle', 'white'), (3, 0): ('triangle', 'white'), (3, 1): ('triangle', 'white'), (3, 2): ('circle', 'black'), (3, 3): ('triangle', 'black'), (3, 4): ('square', 'white'), (3, 5): ('circle', 'white'), (3, 6): ('circle', 'black'), (3, 7): ('triangle', 'black'), (3, 8): ('triangle', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('triangle', 'black'), (4, 3): ('triangle', 'white'), (4, 4): ('triangle', 'black'), (4, 5): ('square', 'white'), (4, 6): ('square', 'black'), (4, 7): ('square', 'black'), (4, 8): ('triangle', 'white'), (5, 0): ('square', 'white'), (5, 1): ('triangle', 'white'), (5, 2): ('triangle', 'white'), (5, 3): ('square', 'white'), (5, 4): ('circle', 'white'), (5, 5): ('circle', 'black'), (5, 6): ('circle', 'black'), (5, 7): ('triangle', 'black'), (5, 8): ('triangle', 'black')}]","(6, 9, 1)"
+154.svg,"[{(0, 0): ('triangle', 'white'), (0, 1): ('square', 'white'), (0, 2): ('triangle', 'black'), (0, 3): ('square', 'white'), (0, 4): ('circle', 'white'), (0, 5): ('circle', 'black'), (0, 6): ('circle', 'white'), (0, 7): ('triangle', 'white'), (0, 8): ('circle', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('square', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('triangle', 'black'), (1, 5): ('triangle', 'black'), (1, 6): ('circle', 'white'), (1, 7): ('circle', 'white'), (1, 8): ('circle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('square', 'white'), (2, 3): ('square', 'white'), (2, 4): ('square', 'white'), (2, 5): ('square', 'black'), (2, 6): ('circle', 'white'), (2, 7): ('triangle', 'white'), (2, 8): ('square', 'white'), (3, 0): ('triangle', 'white'), (3, 1): ('square', 'white'), (3, 2): ('triangle', 'white'), (3, 3): ('circle', 'white'), (3, 4): ('triangle', 'black'), (3, 5): ('circle', 'black'), (3, 6): ('triangle', 'white'), (3, 7): ('triangle', 'black'), (3, 8): ('triangle', 'black'), (4, 0): ('circle', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('triangle', 'black'), (4, 3): ('circle', 'white'), (4, 4): ('circle', 'black'), (4, 5): ('circle', 'black'), (4, 6): ('triangle', 'black'), (4, 7): ('triangle', 'black'), (4, 8): ('triangle', 'black'), (5, 0): ('triangle', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('square', 'black'), (5, 3): ('circle', 'white'), (5, 4): ('circle', 'black'), (5, 5): ('triangle', 'white'), (5, 6): ('square', 'black'), (5, 7): ('circle', 'white'), (5, 8): ('triangle', 'black')}]","(6, 9, 1)"
+155.svg,"[{(0, 0): ('square', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'white'), (0, 3): ('square', 'white'), (0, 4): ('triangle', 'black'), (0, 5): ('circle', 'white'), (0, 6): ('circle', 'black'), (0, 7): ('triangle', 'white'), (0, 8): ('circle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'black'), (1, 3): ('triangle', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('square', 'black'), (1, 6): ('circle', 'black'), (1, 7): ('square', 'white'), (1, 8): ('circle', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('square', 'white'), (2, 3): ('circle', 'white'), (2, 4): ('square', 'white'), (2, 5): ('square', 'black'), (2, 6): ('circle', 'white'), (2, 7): ('square', 'black'), (2, 8): ('circle', 'white'), (3, 0): ('triangle', 'black'), (3, 1): ('triangle', 'black'), (3, 2): ('triangle', 'black'), (3, 3): ('triangle', 'white'), (3, 4): ('triangle', 'black'), (3, 5): ('triangle', 'black'), (3, 6): ('circle', 'black'), (3, 7): ('square', 'white'), (3, 8): ('square', 'white'), (4, 0): ('square', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('triangle', 'black'), (4, 3): ('square', 'white'), (4, 4): ('circle', 'black'), (4, 5): ('circle', 'white'), (4, 6): ('circle', 'black'), (4, 7): ('square', 'black'), (4, 8): ('square', 'black'), (5, 0): ('circle', 'white'), (5, 1): ('triangle', 'black'), (5, 2): ('circle', 'black'), (5, 3): ('circle', 'white'), (5, 4): ('square', 'white'), (5, 5): ('square', 'black'), (5, 6): ('circle', 'black'), (5, 7): ('square', 'white'), (5, 8): ('square', 'black')}]","(6, 9, 1)"
+156.svg,"[{(0, 0): ('circle', 'white'), (0, 1): ('square', 'white'), (0, 2): ('triangle', 'white'), (0, 3): ('square', 'white'), (0, 4): ('triangle', 'black'), (0, 5): ('square', 'black'), (0, 6): ('square', 'white'), (0, 7): ('square', 'black'), (0, 8): ('square', 'black'), (1, 0): ('square', 'black'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'black'), (1, 3): ('square', 'white'), (1, 4): ('square', 'white'), (1, 5): ('circle', 'white'), (1, 6): ('circle', 'white'), (1, 7): ('triangle', 'black'), (1, 8): ('square', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('triangle', 'black'), (2, 3): ('circle', 'black'), (2, 4): ('circle', 'black'), (2, 5): ('triangle', 'white'), (2, 6): ('square', 'white'), (2, 7): ('square', 'white'), (2, 8): ('square', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('square', 'white'), (3, 2): ('triangle', 'white'), (3, 3): ('circle', 'white'), (3, 4): ('triangle', 'black'), (3, 5): ('triangle', 'white'), (3, 6): ('triangle', 'black'), (3, 7): ('square', 'white'), (3, 8): ('triangle', 'black'), (4, 0): ('square', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('square', 'white'), (4, 3): ('square', 'white'), (4, 4): ('square', 'white'), (4, 5): ('square', 'white'), (4, 6): ('circle', 'white'), (4, 7): ('triangle', 'black'), (4, 8): ('circle', 'white'), (5, 0): ('triangle', 'black'), (5, 1): ('square', 'white'), (5, 2): ('triangle', 'black'), (5, 3): ('triangle', 'black'), (5, 4): ('square', 'black'), (5, 5): ('circle', 'white'), (5, 6): ('triangle', 'black'), (5, 7): ('triangle', 'black'), (5, 8): ('square', 'white')}]","(6, 9, 1)"
+157.svg,"[{(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('square', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('circle', 'black'), (0, 6): ('triangle', 'white'), (0, 7): ('square', 'black'), (0, 8): ('triangle', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('circle', 'black'), (1, 6): ('square', 'black'), (1, 7): ('square', 'black'), (1, 8): ('triangle', 'black'), (2, 0): ('square', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('triangle', 'white'), (2, 3): ('circle', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('triangle', 'black'), (2, 6): ('circle', 'white'), (2, 7): ('square', 'black'), (2, 8): ('triangle', 'white'), (3, 0): ('square', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('square', 'white'), (3, 3): ('triangle', 'black'), (3, 4): ('triangle', 'black'), (3, 5): ('square', 'white'), (3, 6): ('square', 'white'), (3, 7): ('square', 'black'), (3, 8): ('triangle', 'white'), (4, 0): ('circle', 'black'), (4, 1): ('circle', 'white'), (4, 2): ('triangle', 'black'), (4, 3): ('circle', 'white'), (4, 4): ('circle', 'black'), (4, 5): ('circle', 'black'), (4, 6): ('square', 'black'), (4, 7): ('circle', 'black'), (4, 8): ('triangle', 'black'), (5, 0): ('circle', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('circle', 'black'), (5, 3): ('circle', 'black'), (5, 4): ('square', 'black'), (5, 5): ('square', 'white'), (5, 6): ('square', 'black'), (5, 7): ('triangle', 'black'), (5, 8): ('triangle', 'white')}]","(6, 9, 1)"
+158.svg,"[{(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('circle', 'white'), (0, 4): ('circle', 'white'), (0, 5): ('square', 'white'), (0, 6): ('square', 'white'), (0, 7): ('circle', 'black'), (0, 8): ('square', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('triangle', 'black'), (1, 6): ('square', 'white'), (1, 7): ('square', 'black'), (1, 8): ('square', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('square', 'black'), (2, 2): ('square', 'black'), (2, 3): ('triangle', 'white'), (2, 4): ('square', 'white'), (2, 5): ('square', 'white'), (2, 6): ('triangle', 'black'), (2, 7): ('square', 'black'), (2, 8): ('circle', 'black'), (3, 0): ('circle', 'black'), (3, 1): ('triangle', 'black'), (3, 2): ('circle', 'white'), (3, 3): ('triangle', 'white'), (3, 4): ('circle', 'white'), (3, 5): ('triangle', 'white'), (3, 6): ('square', 'white'), (3, 7): ('square', 'black'), (3, 8): ('triangle', 'white'), (4, 0): ('square', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('triangle', 'black'), (4, 3): ('triangle', 'black'), (4, 4): ('circle', 'white'), (4, 5): ('square', 'white'), (4, 6): ('circle', 'black'), (4, 7): ('circle', 'black'), (4, 8): ('triangle', 'white'), (5, 0): ('square', 'black'), (5, 1): ('square', 'white'), (5, 2): ('circle', 'black'), (5, 3): ('triangle', 'white'), (5, 4): ('triangle', 'black'), (5, 5): ('circle', 'white'), (5, 6): ('circle', 'white'), (5, 7): ('triangle', 'white'), (5, 8): ('triangle', 'white')}]","(6, 9, 1)"
+159.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('square', 'white'), (0, 4): ('circle', 'black'), (0, 5): ('circle', 'white'), (0, 6): ('circle', 'white'), (0, 7): ('square', 'black'), (0, 8): ('circle', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('square', 'white'), (1, 3): ('square', 'white'), (1, 4): ('square', 'white'), (1, 5): ('square', 'black'), (1, 6): ('triangle', 'white'), (1, 7): ('square', 'white'), (1, 8): ('square', 'black'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'white'), (2, 3): ('triangle', 'white'), (2, 4): ('square', 'black'), (2, 5): ('circle', 'white'), (2, 6): ('square', 'black'), (2, 7): ('square', 'black'), (2, 8): ('triangle', 'black'), (3, 0): ('circle', 'white'), (3, 1): ('triangle', 'black'), (3, 2): ('circle', 'white'), (3, 3): ('square', 'black'), (3, 4): ('triangle', 'white'), (3, 5): ('circle', 'black'), (3, 6): ('square', 'black'), (3, 7): ('triangle', 'black'), (3, 8): ('triangle', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('circle', 'black'), (4, 3): ('circle', 'white'), (4, 4): ('triangle', 'white'), (4, 5): ('triangle', 'black'), (4, 6): ('triangle', 'black'), (4, 7): ('circle', 'white'), (4, 8): ('triangle', 'black'), (5, 0): ('triangle', 'white'), (5, 1): ('square', 'white'), (5, 2): ('square', 'black'), (5, 3): ('square', 'white'), (5, 4): ('square', 'black'), (5, 5): ('square', 'black'), (5, 6): ('square', 'white'), (5, 7): ('square', 'white'), (5, 8): ('square', 'white')}]","(6, 9, 1)"
+160.svg,"[{(0, 0): ('circle', 'black'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('square', 'black'), (0, 5): ('square', 'black'), (0, 6): ('circle', 'white'), (0, 7): ('circle', 'white'), (0, 8): ('square', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('square', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('triangle', 'white'), (1, 5): ('square', 'white'), (1, 6): ('square', 'white'), (1, 7): ('circle', 'white'), (1, 8): ('triangle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'white'), (2, 3): ('circle', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('square', 'black'), (2, 6): ('square', 'black'), (2, 7): ('square', 'black'), (2, 8): ('square', 'black'), (3, 0): ('circle', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('circle', 'white'), (3, 3): ('triangle', 'black'), (3, 4): ('circle', 'white'), (3, 5): ('square', 'black'), (3, 6): ('circle', 'black'), (3, 7): ('square', 'black'), (3, 8): ('triangle', 'white'), (4, 0): ('square', 'black'), (4, 1): ('triangle', 'white'), (4, 2): ('square', 'black'), (4, 3): ('triangle', 'black'), (4, 4): ('triangle', 'white'), (4, 5): ('circle', 'white'), (4, 6): ('circle', 'black'), (4, 7): ('circle', 'black'), (4, 8): ('circle', 'white'), (5, 0): ('square', 'black'), (5, 1): ('square', 'white'), (5, 2): ('triangle', 'white'), (5, 3): ('triangle', 'white'), (5, 4): ('circle', 'white'), (5, 5): ('square', 'black'), (5, 6): ('square', 'white'), (5, 7): ('square', 'black'), (5, 8): ('triangle', 'black')}, {(0, 0): ('square', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('square', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('square', 'black'), (0, 6): ('square', 'black'), (0, 7): ('triangle', 'black'), (0, 8): ('circle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('square', 'black'), (1, 3): ('circle', 'white'), (1, 4): ('triangle', 'black'), (1, 5): ('square', 'black'), (1, 6): ('circle', 'black'), (1, 7): ('square', 'black'), (1, 8): ('circle', 'black'), (2, 0): ('square', 'black'), (2, 1): ('square', 'white'), (2, 2): ('square', 'white'), (2, 3): ('circle', 'white'), (2, 4): ('square', 'white'), (2, 5): ('square', 'black'), (2, 6): ('circle', 'white'), (2, 7): ('square', 'black'), (2, 8): ('square', 'white'), (3, 0): ('triangle', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('triangle', 'black'), (3, 3): ('circle', 'black'), (3, 4): ('square', 'white'), (3, 5): ('circle', 'black'), (3, 6): ('square', 'white'), (3, 7): ('triangle', 'black'), (3, 8): ('square', 'black'), (4, 0): ('circle', 'white'), (4, 1): ('square', 'black'), (4, 2): ('square', 'black'), (4, 3): ('triangle', 'white'), (4, 4): ('circle', 'black'), (4, 5): ('circle', 'black'), (4, 6): ('circle', 'white'), (4, 7): ('square', 'white'), (4, 8): ('circle', 'white'), (5, 0): ('circle', 'white'), (5, 1): ('triangle', 'black'), (5, 2): ('triangle', 'black'), (5, 3): ('square', 'white'), (5, 4): ('square', 'white'), (5, 5): ('circle', 'white'), (5, 6): ('triangle', 'white'), (5, 7): ('square', 'white'), (5, 8): ('triangle', 'white')}, {(0, 0): ('triangle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('square', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('square', 'black'), (0, 5): ('square', 'white'), (0, 6): ('square', 'white'), (0, 7): ('circle', 'black'), (0, 8): ('circle', 'white'), (1, 0): ('triangle', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('square', 'black'), (1, 3): ('triangle', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('square', 'black'), (1, 6): ('square', 'black'), (1, 7): ('circle', 'white'), (1, 8): ('triangle', 'white'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('square', 'black'), (2, 3): ('square', 'white'), (2, 4): ('square', 'black'), (2, 5): ('square', 'black'), (2, 6): ('circle', 'black'), (2, 7): ('square', 'white'), (2, 8): ('triangle', 'white'), (3, 0): ('square', 'white'), (3, 1): ('circle', 'black'), (3, 2): ('square', 'white'), (3, 3): ('triangle', 'white'), (3, 4): ('circle', 'black'), (3, 5): ('square', 'black'), (3, 6): ('circle', 'black'), (3, 7): ('square', 'black'), (3, 8): ('square', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('triangle', 'black'), (4, 2): ('circle', 'white'), (4, 3): ('circle', 'white'), (4, 4): ('circle', 'white'), (4, 5): ('square', 'black'), (4, 6): ('circle', 'black'), (4, 7): ('triangle', 'white'), (4, 8): ('triangle', 'black'), (5, 0): ('triangle', 'white'), (5, 1): ('triangle', 'black'), (5, 2): ('circle', 'black'), (5, 3): ('circle', 'black'), (5, 4): ('triangle', 'white'), (5, 5): ('square', 'white'), (5, 6): ('square', 'black'), (5, 7): ('circle', 'black'), (5, 8): ('triangle', 'white')}]","(6, 9, 3)"
+161.svg,"[{(0, 0): ('circle', 'white'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('square', 'white'), (0, 4): ('square', 'black'), (0, 5): ('triangle', 'black'), (0, 6): ('triangle', 'black'), (0, 7): ('square', 'black'), (0, 8): ('triangle', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('square', 'black'), (1, 3): ('square', 'white'), (1, 4): ('triangle', 'black'), (1, 5): ('triangle', 'black'), (1, 6): ('circle', 'black'), (1, 7): ('triangle', 'white'), (1, 8): ('circle', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('circle', 'white'), (2, 4): ('circle', 'black'), (2, 5): ('circle', 'white'), (2, 6): ('circle', 'black'), (2, 7): ('triangle', 'black'), (2, 8): ('square', 'black'), (3, 0): ('triangle', 'white'), (3, 1): ('circle', 'black'), (3, 2): ('triangle', 'black'), (3, 3): ('square', 'black'), (3, 4): ('circle', 'black'), (3, 5): ('square', 'black'), (3, 6): ('triangle', 'black'), (3, 7): ('square', 'black'), (3, 8): ('square', 'white'), (4, 0): ('square', 'black'), (4, 1): ('square', 'black'), (4, 2): ('square', 'black'), (4, 3): ('square', 'black'), (4, 4): ('square', 'white'), (4, 5): ('triangle', 'white'), (4, 6): ('triangle', 'white'), (4, 7): ('circle', 'white'), (4, 8): ('circle', 'black'), (5, 0): ('triangle', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('triangle', 'black'), (5, 3): ('circle', 'black'), (5, 4): ('circle', 'black'), (5, 5): ('square', 'black'), (5, 6): ('square', 'white'), (5, 7): ('circle', 'white'), (5, 8): ('circle', 'black')}, {(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('circle', 'black'), (0, 5): ('triangle', 'white'), (0, 6): ('triangle', 'black'), (0, 7): ('circle', 'black'), (0, 8): ('square', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('square', 'black'), (1, 2): ('triangle', 'black'), (1, 3): ('square', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('triangle', 'black'), (1, 6): ('triangle', 'black'), (1, 7): ('triangle', 'white'), (1, 8): ('square', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('circle', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('triangle', 'white'), (2, 5): ('circle', 'white'), (2, 6): ('circle', 'black'), (2, 7): ('triangle', 'white'), (2, 8): ('triangle', 'black'), (3, 0): ('triangle', 'white'), (3, 1): ('square', 'white'), (3, 2): ('square', 'white'), (3, 3): ('circle', 'black'), (3, 4): ('circle', 'white'), (3, 5): ('triangle', 'black'), (3, 6): ('circle', 'black'), (3, 7): ('triangle', 'black'), (3, 8): ('square', 'white'), (4, 0): ('square', 'black'), (4, 1): ('triangle', 'white'), (4, 2): ('triangle', 'white'), (4, 3): ('square', 'white'), (4, 4): ('square', 'white'), (4, 5): ('circle', 'white'), (4, 6): ('triangle', 'white'), (4, 7): ('circle', 'black'), (4, 8): ('triangle', 'white'), (5, 0): ('circle', 'white'), (5, 1): ('triangle', 'white'), (5, 2): ('square', 'black'), (5, 3): ('triangle', 'white'), (5, 4): ('triangle', 'black'), (5, 5): ('circle', 'white'), (5, 6): ('square', 'white'), (5, 7): ('circle', 'black'), (5, 8): ('square', 'black')}, {(0, 0): ('triangle', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('square', 'black'), (0, 3): ('square', 'white'), (0, 4): ('triangle', 'black'), (0, 5): ('circle', 'white'), (0, 6): ('square', 'white'), (0, 7): ('triangle', 'white'), (0, 8): ('triangle', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('square', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('circle', 'white'), (1, 6): ('square', 'white'), (1, 7): ('square', 'white'), (1, 8): ('circle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'white'), (2, 3): ('circle', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('triangle', 'black'), (2, 6): ('circle', 'black'), (2, 7): ('circle', 'black'), (2, 8): ('triangle', 'white'), (3, 0): ('triangle', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('triangle', 'white'), (3, 3): ('triangle', 'black'), (3, 4): ('square', 'black'), (3, 5): ('triangle', 'black'), (3, 6): ('square', 'white'), (3, 7): ('triangle', 'black'), (3, 8): ('triangle', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('triangle', 'black'), (4, 2): ('circle', 'white'), (4, 3): ('triangle', 'black'), (4, 4): ('square', 'white'), (4, 5): ('circle', 'black'), (4, 6): ('circle', 'black'), (4, 7): ('circle', 'black'), (4, 8): ('square', 'white'), (5, 0): ('square', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('square', 'white'), (5, 3): ('circle', 'black'), (5, 4): ('square', 'white'), (5, 5): ('square', 'white'), (5, 6): ('circle', 'white'), (5, 7): ('square', 'black'), (5, 8): ('circle', 'black')}]","(6, 9, 3)"
+162.svg,"[{(0, 0): ('square', 'black'), (0, 1): ('square', 'white'), (0, 2): ('square', 'white'), (0, 3): ('square', 'black'), (0, 4): ('square', 'white'), (0, 5): ('triangle', 'white'), (0, 6): ('triangle', 'white'), (0, 7): ('triangle', 'white'), (0, 8): ('circle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('triangle', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('square', 'white'), (1, 6): ('square', 'black'), (1, 7): ('triangle', 'black'), (1, 8): ('circle', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('circle', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('circle', 'white'), (2, 6): ('circle', 'black'), (2, 7): ('triangle', 'black'), (2, 8): ('triangle', 'black'), (3, 0): ('square', 'white'), (3, 1): ('circle', 'white'), (3, 2): ('circle', 'white'), (3, 3): ('triangle', 'white'), (3, 4): ('triangle', 'white'), (3, 5): ('circle', 'white'), (3, 6): ('square', 'white'), (3, 7): ('circle', 'white'), (3, 8): ('circle', 'white'), (4, 0): ('square', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('square', 'white'), (4, 3): ('circle', 'white'), (4, 4): ('square', 'white'), (4, 5): ('circle', 'white'), (4, 6): ('triangle', 'black'), (4, 7): ('circle', 'black'), (4, 8): ('square', 'white'), (5, 0): ('triangle', 'white'), (5, 1): ('triangle', 'white'), (5, 2): ('circle', 'white'), (5, 3): ('circle', 'black'), (5, 4): ('circle', 'black'), (5, 5): ('triangle', 'white'), (5, 6): ('circle', 'black'), (5, 7): ('triangle', 'white'), (5, 8): ('circle', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('circle', 'white'), (0, 3): ('triangle', 'black'), (0, 4): ('circle', 'black'), (0, 5): ('square', 'black'), (0, 6): ('square', 'black'), (0, 7): ('square', 'black'), (0, 8): ('triangle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'black'), (1, 3): ('circle', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('circle', 'black'), (1, 6): ('circle', 'black'), (1, 7): ('triangle', 'white'), (1, 8): ('square', 'white'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('square', 'white'), (2, 4): ('circle', 'black'), (2, 5): ('square', 'white'), (2, 6): ('circle', 'black'), (2, 7): ('square', 'white'), (2, 8): ('circle', 'black'), (3, 0): ('triangle', 'white'), (3, 1): ('triangle', 'white'), (3, 2): ('triangle', 'black'), (3, 3): ('triangle', 'white'), (3, 4): ('triangle', 'black'), (3, 5): ('triangle', 'white'), (3, 6): ('circle', 'black'), (3, 7): ('square', 'white'), (3, 8): ('triangle', 'black'), (4, 0): ('square', 'black'), (4, 1): ('triangle', 'black'), (4, 2): ('square', 'black'), (4, 3): ('triangle', 'black'), (4, 4): ('square', 'white'), (4, 5): ('triangle', 'black'), (4, 6): ('triangle', 'white'), (4, 7): ('circle', 'white'), (4, 8): ('square', 'white'), (5, 0): ('triangle', 'black'), (5, 1): ('square', 'white'), (5, 2): ('circle', 'white'), (5, 3): ('square', 'white'), (5, 4): ('triangle', 'white'), (5, 5): ('triangle', 'black'), (5, 6): ('triangle', 'white'), (5, 7): ('circle', 'white'), (5, 8): ('circle', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('square', 'white'), (0, 4): ('square', 'black'), (0, 5): ('square', 'black'), (0, 6): ('triangle', 'black'), (0, 7): ('circle', 'white'), (0, 8): ('square', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('circle', 'black'), (1, 3): ('triangle', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('square', 'white'), (1, 6): ('square', 'white'), (1, 7): ('triangle', 'white'), (1, 8): ('square', 'black'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('circle', 'black'), (2, 4): ('square', 'black'), (2, 5): ('triangle', 'white'), (2, 6): ('square', 'white'), (2, 7): ('triangle', 'black'), (2, 8): ('square', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('square', 'white'), (3, 2): ('circle', 'white'), (3, 3): ('circle', 'white'), (3, 4): ('circle', 'black'), (3, 5): ('circle', 'white'), (3, 6): ('square', 'white'), (3, 7): ('square', 'black'), (3, 8): ('circle', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('square', 'white'), (4, 2): ('circle', 'black'), (4, 3): ('square', 'black'), (4, 4): ('square', 'white'), (4, 5): ('triangle', 'black'), (4, 6): ('circle', 'white'), (4, 7): ('triangle', 'white'), (4, 8): ('circle', 'black'), (5, 0): ('triangle', 'white'), (5, 1): ('square', 'black'), (5, 2): ('square', 'black'), (5, 3): ('circle', 'black'), (5, 4): ('triangle', 'black'), (5, 5): ('circle', 'black'), (5, 6): ('circle', 'white'), (5, 7): ('circle', 'black'), (5, 8): ('circle', 'black')}]","(6, 9, 3)"
+163.svg,"[{(0, 0): ('square', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('square', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('circle', 'white'), (0, 6): ('circle', 'white'), (0, 7): ('circle', 'black'), (0, 8): ('triangle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('square', 'white'), (1, 2): ('square', 'black'), (1, 3): ('circle', 'white'), (1, 4): ('triangle', 'white'), (1, 5): ('square', 'white'), (1, 6): ('circle', 'black'), (1, 7): ('triangle', 'black'), (1, 8): ('circle', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('square', 'white'), (2, 5): ('circle', 'black'), (2, 6): ('circle', 'black'), (2, 7): ('square', 'black'), (2, 8): ('triangle', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('circle', 'black'), (3, 3): ('triangle', 'white'), (3, 4): ('triangle', 'white'), (3, 5): ('triangle', 'white'), (3, 6): ('triangle', 'black'), (3, 7): ('triangle', 'white'), (3, 8): ('triangle', 'black'), (4, 0): ('square', 'black'), (4, 1): ('triangle', 'white'), (4, 2): ('square', 'black'), (4, 3): ('triangle', 'black'), (4, 4): ('triangle', 'black'), (4, 5): ('circle', 'black'), (4, 6): ('triangle', 'black'), (4, 7): ('circle', 'black'), (4, 8): ('circle', 'white'), (5, 0): ('square', 'black'), (5, 1): ('square', 'black'), (5, 2): ('triangle', 'white'), (5, 3): ('square', 'white'), (5, 4): ('triangle', 'white'), (5, 5): ('circle', 'black'), (5, 6): ('circle', 'white'), (5, 7): ('triangle', 'white'), (5, 8): ('triangle', 'white')}, {(0, 0): ('square', 'black'), (0, 1): ('square', 'black'), (0, 2): ('circle', 'white'), (0, 3): ('triangle', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('square', 'white'), (0, 6): ('circle', 'white'), (0, 7): ('triangle', 'white'), (0, 8): ('circle', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('triangle', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('triangle', 'black'), (1, 5): ('circle', 'white'), (1, 6): ('triangle', 'black'), (1, 7): ('square', 'white'), (1, 8): ('triangle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'black'), (2, 2): ('triangle', 'black'), (2, 3): ('square', 'black'), (2, 4): ('circle', 'black'), (2, 5): ('triangle', 'white'), (2, 6): ('square', 'white'), (2, 7): ('triangle', 'black'), (2, 8): ('square', 'white'), (3, 0): ('triangle', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('triangle', 'white'), (3, 3): ('square', 'white'), (3, 4): ('triangle', 'white'), (3, 5): ('circle', 'white'), (3, 6): ('square', 'white'), (3, 7): ('triangle', 'white'), (3, 8): ('square', 'white'), (4, 0): ('circle', 'black'), (4, 1): ('square', 'white'), (4, 2): ('circle', 'black'), (4, 3): ('triangle', 'white'), (4, 4): ('square', 'black'), (4, 5): ('triangle', 'white'), (4, 6): ('square', 'black'), (4, 7): ('triangle', 'black'), (4, 8): ('circle', 'black'), (5, 0): ('square', 'black'), (5, 1): ('square', 'black'), (5, 2): ('square', 'black'), (5, 3): ('circle', 'white'), (5, 4): ('square', 'white'), (5, 5): ('square', 'black'), (5, 6): ('circle', 'white'), (5, 7): ('square', 'white'), (5, 8): ('circle', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('triangle', 'white'), (0, 4): ('square', 'black'), (0, 5): ('square', 'black'), (0, 6): ('square', 'white'), (0, 7): ('circle', 'white'), (0, 8): ('square', 'white'), (1, 0): ('square', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('circle', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('circle', 'black'), (1, 5): ('triangle', 'black'), (1, 6): ('square', 'white'), (1, 7): ('triangle', 'black'), (1, 8): ('triangle', 'black'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('triangle', 'white'), (2, 5): ('triangle', 'black'), (2, 6): ('square', 'white'), (2, 7): ('triangle', 'black'), (2, 8): ('square', 'black'), (3, 0): ('circle', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('square', 'black'), (3, 3): ('square', 'black'), (3, 4): ('circle', 'white'), (3, 5): ('square', 'black'), (3, 6): ('triangle', 'black'), (3, 7): ('square', 'white'), (3, 8): ('circle', 'white'), (4, 0): ('triangle', 'white'), (4, 1): ('circle', 'black'), (4, 2): ('circle', 'black'), (4, 3): ('circle', 'white'), (4, 4): ('triangle', 'black'), (4, 5): ('square', 'black'), (4, 6): ('circle', 'white'), (4, 7): ('square', 'black'), (4, 8): ('circle', 'black'), (5, 0): ('circle', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('square', 'white'), (5, 3): ('triangle', 'white'), (5, 4): ('square', 'white'), (5, 5): ('circle', 'white'), (5, 6): ('square', 'black'), (5, 7): ('square', 'white'), (5, 8): ('triangle', 'black')}]","(6, 9, 3)"
+164.svg,"[{(0, 0): ('circle', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('triangle', 'black'), (0, 3): ('square', 'black'), (0, 4): ('square', 'white'), (0, 5): ('triangle', 'black'), (0, 6): ('square', 'black'), (0, 7): ('square', 'black'), (0, 8): ('triangle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('square', 'black'), (1, 2): ('triangle', 'black'), (1, 3): ('circle', 'white'), (1, 4): ('triangle', 'black'), (1, 5): ('square', 'white'), (1, 6): ('triangle', 'white'), (1, 7): ('triangle', 'white'), (1, 8): ('triangle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('circle', 'white'), (2, 3): ('circle', 'white'), (2, 4): ('circle', 'white'), (2, 5): ('square', 'white'), (2, 6): ('triangle', 'black'), (2, 7): ('circle', 'white'), (2, 8): ('triangle', 'white'), (3, 0): ('circle', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('triangle', 'black'), (3, 3): ('square', 'black'), (3, 4): ('square', 'black'), (3, 5): ('circle', 'white'), (3, 6): ('square', 'black'), (3, 7): ('triangle', 'white'), (3, 8): ('circle', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('square', 'white'), (4, 2): ('triangle', 'black'), (4, 3): ('square', 'white'), (4, 4): ('circle', 'white'), (4, 5): ('circle', 'black'), (4, 6): ('square', 'white'), (4, 7): ('square', 'white'), (4, 8): ('square', 'black'), (5, 0): ('triangle', 'white'), (5, 1): ('triangle', 'black'), (5, 2): ('circle', 'white'), (5, 3): ('square', 'black'), (5, 4): ('circle', 'white'), (5, 5): ('triangle', 'white'), (5, 6): ('square', 'black'), (5, 7): ('circle', 'black'), (5, 8): ('circle', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('square', 'white'), (0, 3): ('square', 'black'), (0, 4): ('square', 'black'), (0, 5): ('circle', 'white'), (0, 6): ('circle', 'white'), (0, 7): ('circle', 'black'), (0, 8): ('circle', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('square', 'black'), (1, 3): ('square', 'black'), (1, 4): ('triangle', 'black'), (1, 5): ('square', 'white'), (1, 6): ('square', 'black'), (1, 7): ('square', 'black'), (1, 8): ('square', 'white'), (2, 0): ('square', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('triangle', 'white'), (2, 4): ('square', 'black'), (2, 5): ('square', 'white'), (2, 6): ('triangle', 'black'), (2, 7): ('triangle', 'white'), (2, 8): ('square', 'white'), (3, 0): ('square', 'white'), (3, 1): ('square', 'white'), (3, 2): ('square', 'black'), (3, 3): ('triangle', 'black'), (3, 4): ('square', 'white'), (3, 5): ('circle', 'black'), (3, 6): ('circle', 'black'), (3, 7): ('triangle', 'white'), (3, 8): ('circle', 'black'), (4, 0): ('square', 'white'), (4, 1): ('square', 'white'), (4, 2): ('circle', 'black'), (4, 3): ('circle', 'black'), (4, 4): ('square', 'white'), (4, 5): ('triangle', 'black'), (4, 6): ('circle', 'black'), (4, 7): ('square', 'black'), (4, 8): ('square', 'black'), (5, 0): ('circle', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('square', 'white'), (5, 3): ('circle', 'black'), (5, 4): ('square', 'black'), (5, 5): ('triangle', 'black'), (5, 6): ('square', 'white'), (5, 7): ('circle', 'white'), (5, 8): ('circle', 'white')}, {(0, 0): ('triangle', 'black'), (0, 1): ('square', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('triangle', 'white'), (0, 4): ('circle', 'white'), (0, 5): ('square', 'black'), (0, 6): ('triangle', 'black'), (0, 7): ('square', 'black'), (0, 8): ('square', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('square', 'white'), (1, 3): ('square', 'black'), (1, 4): ('circle', 'black'), (1, 5): ('triangle', 'black'), (1, 6): ('triangle', 'black'), (1, 7): ('triangle', 'black'), (1, 8): ('triangle', 'black'), (2, 0): ('square', 'black'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('square', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('square', 'black'), (2, 6): ('circle', 'white'), (2, 7): ('circle', 'black'), (2, 8): ('square', 'black'), (3, 0): ('circle', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('triangle', 'white'), (3, 3): ('circle', 'black'), (3, 4): ('square', 'white'), (3, 5): ('circle', 'black'), (3, 6): ('triangle', 'black'), (3, 7): ('square', 'black'), (3, 8): ('circle', 'black'), (4, 0): ('square', 'black'), (4, 1): ('square', 'white'), (4, 2): ('triangle', 'black'), (4, 3): ('triangle', 'black'), (4, 4): ('triangle', 'white'), (4, 5): ('triangle', 'white'), (4, 6): ('square', 'white'), (4, 7): ('square', 'black'), (4, 8): ('square', 'black'), (5, 0): ('triangle', 'black'), (5, 1): ('square', 'black'), (5, 2): ('square', 'white'), (5, 3): ('square', 'white'), (5, 4): ('circle', 'white'), (5, 5): ('square', 'white'), (5, 6): ('triangle', 'white'), (5, 7): ('square', 'white'), (5, 8): ('triangle', 'black')}]","(6, 9, 3)"
+165.svg,"[{(0, 0): ('circle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('square', 'white'), (0, 4): ('square', 'black'), (0, 5): ('circle', 'black'), (0, 6): ('square', 'white'), (0, 7): ('triangle', 'white'), (0, 8): ('circle', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('circle', 'black'), (1, 6): ('square', 'white'), (1, 7): ('square', 'black'), (1, 8): ('triangle', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('triangle', 'white'), (2, 5): ('circle', 'black'), (2, 6): ('circle', 'white'), (2, 7): ('square', 'white'), (2, 8): ('triangle', 'white'), (3, 0): ('circle', 'black'), (3, 1): ('square', 'black'), (3, 2): ('circle', 'white'), (3, 3): ('circle', 'white'), (3, 4): ('square', 'white'), (3, 5): ('circle', 'white'), (3, 6): ('circle', 'black'), (3, 7): ('triangle', 'black'), (3, 8): ('circle', 'white'), (4, 0): ('square', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('triangle', 'black'), (4, 3): ('square', 'black'), (4, 4): ('circle', 'white'), (4, 5): ('square', 'black'), (4, 6): ('square', 'black'), (4, 7): ('circle', 'black'), (4, 8): ('triangle', 'white'), (5, 0): ('triangle', 'black'), (5, 1): ('square', 'white'), (5, 2): ('circle', 'white'), (5, 3): ('circle', 'black'), (5, 4): ('square', 'white'), (5, 5): ('square', 'white'), (5, 6): ('square', 'white'), (5, 7): ('square', 'black'), (5, 8): ('triangle', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('square', 'white'), (0, 3): ('square', 'white'), (0, 4): ('circle', 'black'), (0, 5): ('triangle', 'black'), (0, 6): ('circle', 'white'), (0, 7): ('circle', 'black'), (0, 8): ('square', 'white'), (1, 0): ('square', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('square', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('triangle', 'white'), (1, 6): ('triangle', 'black'), (1, 7): ('circle', 'white'), (1, 8): ('circle', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('square', 'black'), (2, 4): ('triangle', 'white'), (2, 5): ('triangle', 'white'), (2, 6): ('triangle', 'black'), (2, 7): ('circle', 'black'), (2, 8): ('square', 'white'), (3, 0): ('triangle', 'white'), (3, 1): ('circle', 'white'), (3, 2): ('square', 'white'), (3, 3): ('triangle', 'black'), (3, 4): ('square', 'black'), (3, 5): ('triangle', 'black'), (3, 6): ('square', 'black'), (3, 7): ('square', 'white'), (3, 8): ('square', 'black'), (4, 0): ('circle', 'white'), (4, 1): ('square', 'black'), (4, 2): ('triangle', 'white'), (4, 3): ('square', 'white'), (4, 4): ('triangle', 'white'), (4, 5): ('circle', 'white'), (4, 6): ('square', 'black'), (4, 7): ('circle', 'black'), (4, 8): ('triangle', 'black'), (5, 0): ('triangle', 'white'), (5, 1): ('triangle', 'white'), (5, 2): ('circle', 'white'), (5, 3): ('square', 'black'), (5, 4): ('square', 'black'), (5, 5): ('triangle', 'black'), (5, 6): ('square', 'white'), (5, 7): ('triangle', 'black'), (5, 8): ('square', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('square', 'white'), (0, 3): ('triangle', 'white'), (0, 4): ('square', 'black'), (0, 5): ('triangle', 'black'), (0, 6): ('triangle', 'white'), (0, 7): ('circle', 'white'), (0, 8): ('triangle', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'black'), (1, 3): ('triangle', 'white'), (1, 4): ('square', 'black'), (1, 5): ('triangle', 'black'), (1, 6): ('circle', 'white'), (1, 7): ('square', 'black'), (1, 8): ('square', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('square', 'white'), (2, 3): ('circle', 'black'), (2, 4): ('square', 'white'), (2, 5): ('circle', 'white'), (2, 6): ('triangle', 'black'), (2, 7): ('triangle', 'white'), (2, 8): ('circle', 'white'), (3, 0): ('circle', 'white'), (3, 1): ('circle', 'white'), (3, 2): ('circle', 'black'), (3, 3): ('triangle', 'black'), (3, 4): ('square', 'white'), (3, 5): ('circle', 'black'), (3, 6): ('triangle', 'white'), (3, 7): ('circle', 'black'), (3, 8): ('triangle', 'black'), (4, 0): ('square', 'black'), (4, 1): ('square', 'black'), (4, 2): ('circle', 'black'), (4, 3): ('triangle', 'white'), (4, 4): ('circle', 'white'), (4, 5): ('square', 'black'), (4, 6): ('triangle', 'white'), (4, 7): ('triangle', 'black'), (4, 8): ('circle', 'black'), (5, 0): ('circle', 'black'), (5, 1): ('triangle', 'black'), (5, 2): ('square', 'black'), (5, 3): ('square', 'black'), (5, 4): ('circle', 'black'), (5, 5): ('triangle', 'black'), (5, 6): ('triangle', 'black'), (5, 7): ('triangle', 'black'), (5, 8): ('triangle', 'white')}]","(6, 9, 3)"
+166.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('square', 'white'), (0, 2): ('square', 'black'), (0, 3): ('square', 'white'), (0, 4): ('triangle', 'white'), (0, 5): ('circle', 'white'), (0, 6): ('triangle', 'white'), (0, 7): ('triangle', 'black'), (0, 8): ('square', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('circle', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('square', 'white'), (1, 5): ('triangle', 'black'), (1, 6): ('triangle', 'white'), (1, 7): ('circle', 'white'), (1, 8): ('circle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'white'), (2, 3): ('circle', 'black'), (2, 4): ('circle', 'black'), (2, 5): ('square', 'white'), (2, 6): ('square', 'white'), (2, 7): ('square', 'white'), (2, 8): ('circle', 'white'), (3, 0): ('circle', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('triangle', 'white'), (3, 3): ('triangle', 'black'), (3, 4): ('circle', 'black'), (3, 5): ('circle', 'black'), (3, 6): ('square', 'black'), (3, 7): ('square', 'white'), (3, 8): ('square', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('triangle', 'black'), (4, 2): ('square', 'white'), (4, 3): ('square', 'white'), (4, 4): ('triangle', 'black'), (4, 5): ('circle', 'black'), (4, 6): ('triangle', 'black'), (4, 7): ('square', 'black'), (4, 8): ('square', 'white'), (5, 0): ('square', 'white'), (5, 1): ('triangle', 'black'), (5, 2): ('triangle', 'white'), (5, 3): ('circle', 'black'), (5, 4): ('triangle', 'black'), (5, 5): ('square', 'white'), (5, 6): ('square', 'black'), (5, 7): ('triangle', 'black'), (5, 8): ('square', 'black')}, {(0, 0): ('square', 'white'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('triangle', 'white'), (0, 4): ('square', 'white'), (0, 5): ('triangle', 'white'), (0, 6): ('square', 'white'), (0, 7): ('triangle', 'black'), (0, 8): ('circle', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('triangle', 'white'), (1, 4): ('triangle', 'black'), (1, 5): ('triangle', 'black'), (1, 6): ('square', 'black'), (1, 7): ('square', 'white'), (1, 8): ('circle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('square', 'white'), (2, 4): ('triangle', 'white'), (2, 5): ('circle', 'white'), (2, 6): ('triangle', 'white'), (2, 7): ('triangle', 'black'), (2, 8): ('triangle', 'white'), (3, 0): ('square', 'black'), (3, 1): ('square', 'white'), (3, 2): ('square', 'black'), (3, 3): ('square', 'black'), (3, 4): ('square', 'black'), (3, 5): ('square', 'white'), (3, 6): ('triangle', 'white'), (3, 7): ('square', 'black'), (3, 8): ('triangle', 'white'), (4, 0): ('circle', 'white'), (4, 1): ('square', 'black'), (4, 2): ('triangle', 'white'), (4, 3): ('square', 'white'), (4, 4): ('circle', 'black'), (4, 5): ('square', 'black'), (4, 6): ('square', 'black'), (4, 7): ('circle', 'black'), (4, 8): ('square', 'black'), (5, 0): ('triangle', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('square', 'black'), (5, 3): ('triangle', 'black'), (5, 4): ('triangle', 'white'), (5, 5): ('triangle', 'white'), (5, 6): ('circle', 'black'), (5, 7): ('circle', 'white'), (5, 8): ('circle', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('circle', 'black'), (0, 5): ('square', 'black'), (0, 6): ('triangle', 'black'), (0, 7): ('square', 'white'), (0, 8): ('square', 'black'), (1, 0): ('square', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('square', 'white'), (1, 6): ('circle', 'black'), (1, 7): ('triangle', 'black'), (1, 8): ('square', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('square', 'white'), (2, 2): ('circle', 'black'), (2, 3): ('circle', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('circle', 'white'), (2, 6): ('circle', 'white'), (2, 7): ('circle', 'black'), (2, 8): ('square', 'white'), (3, 0): ('triangle', 'black'), (3, 1): ('square', 'black'), (3, 2): ('circle', 'white'), (3, 3): ('square', 'white'), (3, 4): ('square', 'black'), (3, 5): ('square', 'white'), (3, 6): ('triangle', 'black'), (3, 7): ('circle', 'black'), (3, 8): ('circle', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('square', 'black'), (4, 3): ('square', 'black'), (4, 4): ('triangle', 'black'), (4, 5): ('triangle', 'black'), (4, 6): ('square', 'white'), (4, 7): ('square', 'black'), (4, 8): ('square', 'black'), (5, 0): ('circle', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('circle', 'white'), (5, 3): ('triangle', 'black'), (5, 4): ('triangle', 'white'), (5, 5): ('square', 'black'), (5, 6): ('circle', 'black'), (5, 7): ('circle', 'black'), (5, 8): ('triangle', 'black')}]","(6, 9, 3)"
+167.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('triangle', 'black'), (0, 3): ('triangle', 'white'), (0, 4): ('square', 'white'), (0, 5): ('triangle', 'white'), (0, 6): ('circle', 'black'), (0, 7): ('circle', 'white'), (0, 8): ('square', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('square', 'white'), (1, 3): ('square', 'black'), (1, 4): ('circle', 'black'), (1, 5): ('square', 'black'), (1, 6): ('circle', 'black'), (1, 7): ('square', 'black'), (1, 8): ('triangle', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('circle', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('circle', 'black'), (2, 5): ('circle', 'white'), (2, 6): ('circle', 'black'), (2, 7): ('triangle', 'black'), (2, 8): ('square', 'black'), (3, 0): ('square', 'white'), (3, 1): ('square', 'white'), (3, 2): ('square', 'black'), (3, 3): ('circle', 'black'), (3, 4): ('triangle', 'black'), (3, 5): ('circle', 'white'), (3, 6): ('square', 'black'), (3, 7): ('square', 'black'), (3, 8): ('square', 'black'), (4, 0): ('square', 'black'), (4, 1): ('circle', 'white'), (4, 2): ('triangle', 'black'), (4, 3): ('square', 'black'), (4, 4): ('square', 'white'), (4, 5): ('triangle', 'black'), (4, 6): ('triangle', 'white'), (4, 7): ('square', 'black'), (4, 8): ('triangle', 'white'), (5, 0): ('triangle', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('circle', 'black'), (5, 3): ('square', 'black'), (5, 4): ('circle', 'black'), (5, 5): ('circle', 'white'), (5, 6): ('square', 'white'), (5, 7): ('triangle', 'white'), (5, 8): ('square', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('square', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('square', 'white'), (0, 4): ('circle', 'white'), (0, 5): ('triangle', 'black'), (0, 6): ('square', 'white'), (0, 7): ('circle', 'black'), (0, 8): ('circle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('square', 'white'), (1, 2): ('square', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('square', 'white'), (1, 5): ('triangle', 'white'), (1, 6): ('square', 'white'), (1, 7): ('circle', 'white'), (1, 8): ('triangle', 'white'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('triangle', 'black'), (2, 3): ('circle', 'black'), (2, 4): ('circle', 'black'), (2, 5): ('square', 'black'), (2, 6): ('circle', 'white'), (2, 7): ('square', 'white'), (2, 8): ('circle', 'white'), (3, 0): ('circle', 'black'), (3, 1): ('circle', 'white'), (3, 2): ('triangle', 'black'), (3, 3): ('triangle', 'white'), (3, 4): ('square', 'black'), (3, 5): ('triangle', 'white'), (3, 6): ('square', 'white'), (3, 7): ('triangle', 'white'), (3, 8): ('triangle', 'white'), (4, 0): ('square', 'white'), (4, 1): ('circle', 'black'), (4, 2): ('triangle', 'white'), (4, 3): ('circle', 'black'), (4, 4): ('square', 'white'), (4, 5): ('square', 'black'), (4, 6): ('circle', 'black'), (4, 7): ('circle', 'white'), (4, 8): ('triangle', 'black'), (5, 0): ('square', 'white'), (5, 1): ('square', 'black'), (5, 2): ('square', 'black'), (5, 3): ('square', 'black'), (5, 4): ('circle', 'white'), (5, 5): ('square', 'black'), (5, 6): ('triangle', 'black'), (5, 7): ('circle', 'white'), (5, 8): ('circle', 'black')}, {(0, 0): ('square', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('triangle', 'black'), (0, 6): ('circle', 'white'), (0, 7): ('circle', 'white'), (0, 8): ('square', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('square', 'black'), (1, 5): ('triangle', 'black'), (1, 6): ('triangle', 'black'), (1, 7): ('circle', 'white'), (1, 8): ('circle', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'black'), (2, 3): ('circle', 'black'), (2, 4): ('circle', 'white'), (2, 5): ('triangle', 'black'), (2, 6): ('triangle', 'black'), (2, 7): ('circle', 'black'), (2, 8): ('circle', 'white'), (3, 0): ('square', 'white'), (3, 1): ('triangle', 'black'), (3, 2): ('circle', 'black'), (3, 3): ('circle', 'white'), (3, 4): ('triangle', 'white'), (3, 5): ('circle', 'black'), (3, 6): ('triangle', 'white'), (3, 7): ('square', 'white'), (3, 8): ('square', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('square', 'white'), (4, 2): ('circle', 'white'), (4, 3): ('triangle', 'white'), (4, 4): ('circle', 'white'), (4, 5): ('square', 'white'), (4, 6): ('square', 'black'), (4, 7): ('circle', 'white'), (4, 8): ('circle', 'black'), (5, 0): ('circle', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('triangle', 'white'), (5, 3): ('circle', 'white'), (5, 4): ('circle', 'black'), (5, 5): ('circle', 'white'), (5, 6): ('circle', 'black'), (5, 7): ('triangle', 'white'), (5, 8): ('circle', 'black')}]","(6, 9, 3)"
+168.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('circle', 'white'), (0, 4): ('triangle', 'black'), (0, 5): ('square', 'white'), (0, 6): ('square', 'black'), (0, 7): ('square', 'black'), (0, 8): ('circle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('square', 'white'), (1, 3): ('square', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('square', 'white'), (1, 6): ('triangle', 'black'), (1, 7): ('circle', 'black'), (1, 8): ('triangle', 'black'), (2, 0): ('square', 'black'), (2, 1): ('square', 'white'), (2, 2): ('circle', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('square', 'white'), (2, 5): ('square', 'white'), (2, 6): ('circle', 'black'), (2, 7): ('triangle', 'black'), (2, 8): ('square', 'white'), (3, 0): ('square', 'black'), (3, 1): ('circle', 'white'), (3, 2): ('circle', 'black'), (3, 3): ('circle', 'black'), (3, 4): ('square', 'black'), (3, 5): ('square', 'white'), (3, 6): ('triangle', 'black'), (3, 7): ('triangle', 'black'), (3, 8): ('square', 'black'), (4, 0): ('triangle', 'white'), (4, 1): ('triangle', 'black'), (4, 2): ('square', 'black'), (4, 3): ('circle', 'white'), (4, 4): ('square', 'white'), (4, 5): ('circle', 'black'), (4, 6): ('square', 'black'), (4, 7): ('circle', 'white'), (4, 8): ('circle', 'black'), (5, 0): ('square', 'black'), (5, 1): ('triangle', 'white'), (5, 2): ('triangle', 'white'), (5, 3): ('circle', 'white'), (5, 4): ('square', 'white'), (5, 5): ('square', 'white'), (5, 6): ('square', 'white'), (5, 7): ('circle', 'white'), (5, 8): ('circle', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('square', 'white'), (0, 3): ('square', 'black'), (0, 4): ('square', 'black'), (0, 5): ('circle', 'white'), (0, 6): ('triangle', 'black'), (0, 7): ('triangle', 'white'), (0, 8): ('circle', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('triangle', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('circle', 'black'), (1, 6): ('circle', 'black'), (1, 7): ('triangle', 'white'), (1, 8): ('circle', 'white'), (2, 0): ('square', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('triangle', 'black'), (2, 3): ('triangle', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('square', 'black'), (2, 6): ('triangle', 'white'), (2, 7): ('circle', 'black'), (2, 8): ('square', 'white'), (3, 0): ('circle', 'black'), (3, 1): ('triangle', 'black'), (3, 2): ('circle', 'black'), (3, 3): ('circle', 'black'), (3, 4): ('circle', 'black'), (3, 5): ('square', 'white'), (3, 6): ('triangle', 'white'), (3, 7): ('square', 'white'), (3, 8): ('triangle', 'white'), (4, 0): ('circle', 'white'), (4, 1): ('square', 'white'), (4, 2): ('circle', 'white'), (4, 3): ('triangle', 'white'), (4, 4): ('circle', 'white'), (4, 5): ('circle', 'black'), (4, 6): ('triangle', 'white'), (4, 7): ('circle', 'white'), (4, 8): ('triangle', 'white'), (5, 0): ('triangle', 'white'), (5, 1): ('triangle', 'white'), (5, 2): ('square', 'black'), (5, 3): ('square', 'white'), (5, 4): ('triangle', 'black'), (5, 5): ('circle', 'white'), (5, 6): ('triangle', 'black'), (5, 7): ('square', 'black'), (5, 8): ('square', 'white')}, {(0, 0): ('square', 'black'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('triangle', 'black'), (0, 6): ('circle', 'white'), (0, 7): ('triangle', 'black'), (0, 8): ('square', 'black'), (1, 0): ('square', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'black'), (1, 3): ('square', 'black'), (1, 4): ('circle', 'black'), (1, 5): ('square', 'black'), (1, 6): ('circle', 'white'), (1, 7): ('square', 'black'), (1, 8): ('triangle', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'white'), (2, 3): ('circle', 'black'), (2, 4): ('square', 'white'), (2, 5): ('square', 'white'), (2, 6): ('square', 'white'), (2, 7): ('square', 'black'), (2, 8): ('square', 'white'), (3, 0): ('triangle', 'white'), (3, 1): ('square', 'white'), (3, 2): ('triangle', 'white'), (3, 3): ('triangle', 'black'), (3, 4): ('triangle', 'black'), (3, 5): ('square', 'white'), (3, 6): ('triangle', 'white'), (3, 7): ('triangle', 'black'), (3, 8): ('triangle', 'white'), (4, 0): ('square', 'black'), (4, 1): ('circle', 'white'), (4, 2): ('circle', 'black'), (4, 3): ('triangle', 'black'), (4, 4): ('circle', 'white'), (4, 5): ('square', 'white'), (4, 6): ('square', 'white'), (4, 7): ('triangle', 'white'), (4, 8): ('circle', 'white'), (5, 0): ('triangle', 'white'), (5, 1): ('triangle', 'black'), (5, 2): ('square', 'black'), (5, 3): ('circle', 'white'), (5, 4): ('circle', 'white'), (5, 5): ('square', 'white'), (5, 6): ('triangle', 'black'), (5, 7): ('triangle', 'white'), (5, 8): ('square', 'black')}]","(6, 9, 3)"
+169.svg,"[{(0, 0): ('square', 'black'), (0, 1): ('square', 'white'), (0, 2): ('square', 'black'), (0, 3): ('square', 'white'), (0, 4): ('circle', 'white'), (0, 5): ('circle', 'white'), (0, 6): ('triangle', 'white'), (0, 7): ('circle', 'white'), (0, 8): ('triangle', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('triangle', 'black'), (1, 5): ('triangle', 'white'), (1, 6): ('square', 'white'), (1, 7): ('triangle', 'white'), (1, 8): ('circle', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('circle', 'black'), (2, 4): ('circle', 'black'), (2, 5): ('triangle', 'white'), (2, 6): ('circle', 'white'), (2, 7): ('circle', 'white'), (2, 8): ('triangle', 'black'), (3, 0): ('square', 'white'), (3, 1): ('circle', 'black'), (3, 2): ('square', 'white'), (3, 3): ('triangle', 'white'), (3, 4): ('square', 'white'), (3, 5): ('square', 'black'), (3, 6): ('triangle', 'black'), (3, 7): ('triangle', 'white'), (3, 8): ('triangle', 'white'), (4, 0): ('square', 'black'), (4, 1): ('triangle', 'white'), (4, 2): ('square', 'black'), (4, 3): ('circle', 'white'), (4, 4): ('triangle', 'white'), (4, 5): ('triangle', 'black'), (4, 6): ('triangle', 'black'), (4, 7): ('square', 'white'), (4, 8): ('square', 'white'), (5, 0): ('square', 'black'), (5, 1): ('square', 'black'), (5, 2): ('square', 'white'), (5, 3): ('square', 'black'), (5, 4): ('triangle', 'white'), (5, 5): ('square', 'black'), (5, 6): ('circle', 'white'), (5, 7): ('circle', 'white'), (5, 8): ('circle', 'black')}, {(0, 0): ('square', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'white'), (0, 3): ('square', 'white'), (0, 4): ('triangle', 'white'), (0, 5): ('circle', 'white'), (0, 6): ('triangle', 'black'), (0, 7): ('square', 'white'), (0, 8): ('circle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('circle', 'black'), (1, 5): ('triangle', 'black'), (1, 6): ('square', 'black'), (1, 7): ('triangle', 'black'), (1, 8): ('triangle', 'white'), (2, 0): ('square', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('square', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('square', 'black'), (2, 5): ('triangle', 'black'), (2, 6): ('circle', 'black'), (2, 7): ('circle', 'white'), (2, 8): ('triangle', 'white'), (3, 0): ('triangle', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('square', 'black'), (3, 3): ('square', 'black'), (3, 4): ('square', 'black'), (3, 5): ('triangle', 'white'), (3, 6): ('triangle', 'black'), (3, 7): ('circle', 'white'), (3, 8): ('triangle', 'black'), (4, 0): ('circle', 'white'), (4, 1): ('square', 'black'), (4, 2): ('square', 'black'), (4, 3): ('circle', 'black'), (4, 4): ('circle', 'black'), (4, 5): ('square', 'black'), (4, 6): ('triangle', 'white'), (4, 7): ('circle', 'black'), (4, 8): ('square', 'white'), (5, 0): ('square', 'white'), (5, 1): ('triangle', 'black'), (5, 2): ('circle', 'white'), (5, 3): ('square', 'black'), (5, 4): ('square', 'white'), (5, 5): ('circle', 'white'), (5, 6): ('square', 'black'), (5, 7): ('circle', 'white'), (5, 8): ('square', 'white')}, {(0, 0): ('triangle', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('triangle', 'white'), (0, 4): ('circle', 'white'), (0, 5): ('circle', 'white'), (0, 6): ('square', 'white'), (0, 7): ('square', 'black'), (0, 8): ('triangle', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('square', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('square', 'black'), (1, 5): ('square', 'black'), (1, 6): ('triangle', 'black'), (1, 7): ('square', 'black'), (1, 8): ('square', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('square', 'black'), (2, 4): ('square', 'white'), (2, 5): ('circle', 'black'), (2, 6): ('triangle', 'white'), (2, 7): ('circle', 'black'), (2, 8): ('circle', 'black'), (3, 0): ('square', 'white'), (3, 1): ('circle', 'white'), (3, 2): ('triangle', 'white'), (3, 3): ('square', 'black'), (3, 4): ('square', 'black'), (3, 5): ('circle', 'black'), (3, 6): ('triangle', 'white'), (3, 7): ('circle', 'black'), (3, 8): ('circle', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('triangle', 'black'), (4, 3): ('circle', 'white'), (4, 4): ('square', 'white'), (4, 5): ('circle', 'white'), (4, 6): ('square', 'black'), (4, 7): ('square', 'black'), (4, 8): ('circle', 'white'), (5, 0): ('triangle', 'white'), (5, 1): ('triangle', 'white'), (5, 2): ('circle', 'black'), (5, 3): ('triangle', 'black'), (5, 4): ('circle', 'black'), (5, 5): ('circle', 'black'), (5, 6): ('triangle', 'black'), (5, 7): ('square', 'white'), (5, 8): ('circle', 'white')}]","(6, 9, 3)"
+170.svg,"[{(0, 0): ('circle', 'black'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'black'), (0, 3): ('square', 'black'), (0, 4): ('circle', 'black'), (0, 5): ('circle', 'black'), (0, 6): ('triangle', 'black'), (0, 7): ('triangle', 'white'), (0, 8): ('square', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('square', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('triangle', 'white'), (1, 4): ('square', 'white'), (1, 5): ('square', 'white'), (1, 6): ('triangle', 'white'), (1, 7): ('triangle', 'white'), (1, 8): ('triangle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('square', 'white'), (2, 4): ('triangle', 'white'), (2, 5): ('triangle', 'white'), (2, 6): ('triangle', 'black'), (2, 7): ('circle', 'black'), (2, 8): ('triangle', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('circle', 'black'), (3, 3): ('circle', 'black'), (3, 4): ('square', 'black'), (3, 5): ('circle', 'white'), (3, 6): ('circle', 'white'), (3, 7): ('circle', 'black'), (3, 8): ('triangle', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('triangle', 'white'), (4, 3): ('square', 'white'), (4, 4): ('circle', 'black'), (4, 5): ('square', 'white'), (4, 6): ('circle', 'black'), (4, 7): ('triangle', 'black'), (4, 8): ('triangle', 'white'), (5, 0): ('square', 'white'), (5, 1): ('triangle', 'white'), (5, 2): ('square', 'white'), (5, 3): ('circle', 'black'), (5, 4): ('triangle', 'black'), (5, 5): ('triangle', 'white'), (5, 6): ('circle', 'black'), (5, 7): ('square', 'white'), (5, 8): ('square', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('square', 'white'), (0, 5): ('triangle', 'black'), (0, 6): ('triangle', 'black'), (0, 7): ('square', 'white'), (0, 8): ('circle', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'white'), (1, 3): ('square', 'black'), (1, 4): ('triangle', 'black'), (1, 5): ('circle', 'black'), (1, 6): ('triangle', 'black'), (1, 7): ('square', 'black'), (1, 8): ('circle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('square', 'white'), (2, 3): ('circle', 'white'), (2, 4): ('circle', 'white'), (2, 5): ('square', 'white'), (2, 6): ('square', 'black'), (2, 7): ('circle', 'white'), (2, 8): ('circle', 'white'), (3, 0): ('triangle', 'black'), (3, 1): ('circle', 'white'), (3, 2): ('square', 'white'), (3, 3): ('square', 'white'), (3, 4): ('circle', 'black'), (3, 5): ('circle', 'black'), (3, 6): ('square', 'white'), (3, 7): ('square', 'white'), (3, 8): ('triangle', 'white'), (4, 0): ('square', 'black'), (4, 1): ('square', 'white'), (4, 2): ('circle', 'white'), (4, 3): ('circle', 'black'), (4, 4): ('triangle', 'black'), (4, 5): ('triangle', 'black'), (4, 6): ('triangle', 'black'), (4, 7): ('triangle', 'white'), (4, 8): ('triangle', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('triangle', 'white'), (5, 3): ('circle', 'black'), (5, 4): ('triangle', 'white'), (5, 5): ('circle', 'black'), (5, 6): ('circle', 'white'), (5, 7): ('square', 'white'), (5, 8): ('square', 'white')}, {(0, 0): ('square', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('square', 'white'), (0, 3): ('circle', 'white'), (0, 4): ('triangle', 'white'), (0, 5): ('square', 'black'), (0, 6): ('circle', 'black'), (0, 7): ('square', 'black'), (0, 8): ('triangle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('square', 'white'), (1, 6): ('square', 'white'), (1, 7): ('triangle', 'black'), (1, 8): ('square', 'white'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('square', 'white'), (2, 3): ('circle', 'black'), (2, 4): ('square', 'white'), (2, 5): ('square', 'white'), (2, 6): ('square', 'black'), (2, 7): ('square', 'white'), (2, 8): ('square', 'black'), (3, 0): ('triangle', 'white'), (3, 1): ('triangle', 'white'), (3, 2): ('triangle', 'white'), (3, 3): ('square', 'black'), (3, 4): ('square', 'black'), (3, 5): ('triangle', 'white'), (3, 6): ('circle', 'white'), (3, 7): ('circle', 'black'), (3, 8): ('triangle', 'black'), (4, 0): ('circle', 'white'), (4, 1): ('triangle', 'black'), (4, 2): ('triangle', 'white'), (4, 3): ('triangle', 'white'), (4, 4): ('triangle', 'black'), (4, 5): ('square', 'black'), (4, 6): ('triangle', 'white'), (4, 7): ('square', 'black'), (4, 8): ('square', 'black'), (5, 0): ('square', 'white'), (5, 1): ('square', 'black'), (5, 2): ('circle', 'black'), (5, 3): ('triangle', 'black'), (5, 4): ('triangle', 'black'), (5, 5): ('square', 'white'), (5, 6): ('square', 'black'), (5, 7): ('triangle', 'black'), (5, 8): ('triangle', 'white')}, {(0, 0): ('circle', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'black'), (0, 3): ('square', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('circle', 'black'), (0, 6): ('triangle', 'white'), (0, 7): ('triangle', 'white'), (0, 8): ('triangle', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('triangle', 'black'), (1, 3): ('triangle', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('square', 'white'), (1, 6): ('triangle', 'white'), (1, 7): ('triangle', 'black'), (1, 8): ('circle', 'black'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('triangle', 'black'), (2, 3): ('triangle', 'black'), (2, 4): ('circle', 'black'), (2, 5): ('square', 'white'), (2, 6): ('triangle', 'black'), (2, 7): ('triangle', 'black'), (2, 8): ('triangle', 'black'), (3, 0): ('circle', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('square', 'black'), (3, 3): ('square', 'black'), (3, 4): ('triangle', 'black'), (3, 5): ('triangle', 'black'), (3, 6): ('square', 'white'), (3, 7): ('square', 'white'), (3, 8): ('square', 'black'), (4, 0): ('triangle', 'white'), (4, 1): ('triangle', 'black'), (4, 2): ('circle', 'black'), (4, 3): ('circle', 'white'), (4, 4): ('circle', 'white'), (4, 5): ('square', 'white'), (4, 6): ('square', 'white'), (4, 7): ('triangle', 'black'), (4, 8): ('square', 'white'), (5, 0): ('square', 'white'), (5, 1): ('square', 'white'), (5, 2): ('triangle', 'black'), (5, 3): ('square', 'black'), (5, 4): ('square', 'black'), (5, 5): ('circle', 'white'), (5, 6): ('square', 'white'), (5, 7): ('square', 'white'), (5, 8): ('circle', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'white'), (0, 3): ('circle', 'white'), (0, 4): ('triangle', 'white'), (0, 5): ('square', 'white'), (0, 6): ('circle', 'white'), (0, 7): ('circle', 'white'), (0, 8): ('triangle', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('circle', 'black'), (1, 3): ('triangle', 'white'), (1, 4): ('triangle', 'black'), (1, 5): ('square', 'white'), (1, 6): ('square', 'black'), (1, 7): ('circle', 'black'), (1, 8): ('square', 'black'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('triangle', 'white'), (2, 4): ('circle', 'black'), (2, 5): ('triangle', 'black'), (2, 6): ('triangle', 'white'), (2, 7): ('triangle', 'black'), (2, 8): ('circle', 'black'), (3, 0): ('circle', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('square', 'black'), (3, 3): ('circle', 'white'), (3, 4): ('triangle', 'black'), (3, 5): ('circle', 'black'), (3, 6): ('square', 'white'), (3, 7): ('circle', 'white'), (3, 8): ('circle', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('circle', 'white'), (4, 2): ('square', 'black'), (4, 3): ('circle', 'white'), (4, 4): ('circle', 'white'), (4, 5): ('square', 'white'), (4, 6): ('triangle', 'white'), (4, 7): ('triangle', 'black'), (4, 8): ('triangle', 'white'), (5, 0): ('triangle', 'white'), (5, 1): ('triangle', 'black'), (5, 2): ('square', 'white'), (5, 3): ('circle', 'black'), (5, 4): ('triangle', 'black'), (5, 5): ('circle', 'white'), (5, 6): ('square', 'black'), (5, 7): ('square', 'white'), (5, 8): ('triangle', 'white')}]","(6, 9, 5)"
+171.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('square', 'white'), (0, 3): ('triangle', 'black'), (0, 4): ('square', 'white'), (0, 5): ('circle', 'black'), (0, 6): ('square', 'white'), (0, 7): ('square', 'black'), (0, 8): ('triangle', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('square', 'black'), (1, 3): ('square', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('triangle', 'black'), (1, 6): ('circle', 'white'), (1, 7): ('square', 'black'), (1, 8): ('triangle', 'black'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('triangle', 'white'), (2, 3): ('circle', 'white'), (2, 4): ('triangle', 'white'), (2, 5): ('triangle', 'black'), (2, 6): ('triangle', 'black'), (2, 7): ('circle', 'black'), (2, 8): ('triangle', 'white'), (3, 0): ('triangle', 'white'), (3, 1): ('square', 'black'), (3, 2): ('triangle', 'white'), (3, 3): ('square', 'white'), (3, 4): ('triangle', 'black'), (3, 5): ('square', 'white'), (3, 6): ('triangle', 'black'), (3, 7): ('square', 'white'), (3, 8): ('circle', 'white'), (4, 0): ('square', 'black'), (4, 1): ('triangle', 'white'), (4, 2): ('square', 'black'), (4, 3): ('triangle', 'black'), (4, 4): ('circle', 'black'), (4, 5): ('square', 'black'), (4, 6): ('circle', 'white'), (4, 7): ('circle', 'black'), (4, 8): ('triangle', 'black'), (5, 0): ('triangle', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('circle', 'black'), (5, 3): ('square', 'white'), (5, 4): ('circle', 'black'), (5, 5): ('square', 'black'), (5, 6): ('circle', 'white'), (5, 7): ('circle', 'black'), (5, 8): ('triangle', 'black')}, {(0, 0): ('square', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('square', 'white'), (0, 3): ('triangle', 'black'), (0, 4): ('square', 'black'), (0, 5): ('circle', 'white'), (0, 6): ('triangle', 'black'), (0, 7): ('triangle', 'white'), (0, 8): ('square', 'black'), (1, 0): ('square', 'white'), (1, 1): ('square', 'black'), (1, 2): ('circle', 'black'), (1, 3): ('square', 'white'), (1, 4): ('triangle', 'black'), (1, 5): ('circle', 'white'), (1, 6): ('triangle', 'white'), (1, 7): ('triangle', 'white'), (1, 8): ('triangle', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('circle', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('square', 'black'), (2, 6): ('triangle', 'black'), (2, 7): ('triangle', 'white'), (2, 8): ('square', 'black'), (3, 0): ('square', 'white'), (3, 1): ('square', 'black'), (3, 2): ('triangle', 'white'), (3, 3): ('triangle', 'white'), (3, 4): ('circle', 'black'), (3, 5): ('square', 'black'), (3, 6): ('circle', 'black'), (3, 7): ('triangle', 'white'), (3, 8): ('square', 'black'), (4, 0): ('triangle', 'white'), (4, 1): ('triangle', 'black'), (4, 2): ('triangle', 'black'), (4, 3): ('circle', 'black'), (4, 4): ('circle', 'black'), (4, 5): ('triangle', 'white'), (4, 6): ('circle', 'black'), (4, 7): ('square', 'black'), (4, 8): ('circle', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('circle', 'black'), (5, 3): ('triangle', 'white'), (5, 4): ('triangle', 'white'), (5, 5): ('triangle', 'black'), (5, 6): ('circle', 'black'), (5, 7): ('circle', 'black'), (5, 8): ('circle', 'white')}, {(0, 0): ('triangle', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('circle', 'white'), (0, 4): ('triangle', 'black'), (0, 5): ('square', 'white'), (0, 6): ('square', 'black'), (0, 7): ('triangle', 'white'), (0, 8): ('square', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'white'), (1, 3): ('square', 'black'), (1, 4): ('square', 'black'), (1, 5): ('triangle', 'black'), (1, 6): ('circle', 'black'), (1, 7): ('triangle', 'black'), (1, 8): ('triangle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('square', 'black'), (2, 4): ('triangle', 'white'), (2, 5): ('triangle', 'white'), (2, 6): ('square', 'white'), (2, 7): ('square', 'white'), (2, 8): ('circle', 'white'), (3, 0): ('circle', 'white'), (3, 1): ('square', 'black'), (3, 2): ('triangle', 'black'), (3, 3): ('triangle', 'white'), (3, 4): ('square', 'black'), (3, 5): ('square', 'black'), (3, 6): ('triangle', 'white'), (3, 7): ('circle', 'black'), (3, 8): ('square', 'white'), (4, 0): ('square', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('circle', 'white'), (4, 3): ('square', 'black'), (4, 4): ('triangle', 'black'), (4, 5): ('circle', 'black'), (4, 6): ('triangle', 'black'), (4, 7): ('triangle', 'black'), (4, 8): ('circle', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('triangle', 'white'), (5, 3): ('square', 'black'), (5, 4): ('square', 'black'), (5, 5): ('square', 'black'), (5, 6): ('triangle', 'black'), (5, 7): ('square', 'black'), (5, 8): ('triangle', 'black')}, {(0, 0): ('square', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('circle', 'white'), (0, 4): ('circle', 'black'), (0, 5): ('circle', 'white'), (0, 6): ('square', 'black'), (0, 7): ('square', 'black'), (0, 8): ('triangle', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('square', 'white'), (1, 2): ('triangle', 'black'), (1, 3): ('triangle', 'black'), (1, 4): ('triangle', 'white'), (1, 5): ('square', 'white'), (1, 6): ('square', 'black'), (1, 7): ('triangle', 'black'), (1, 8): ('triangle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'white'), (2, 3): ('square', 'white'), (2, 4): ('triangle', 'white'), (2, 5): ('circle', 'white'), (2, 6): ('triangle', 'black'), (2, 7): ('square', 'white'), (2, 8): ('triangle', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('triangle', 'black'), (3, 2): ('square', 'white'), (3, 3): ('square', 'white'), (3, 4): ('square', 'black'), (3, 5): ('square', 'white'), (3, 6): ('triangle', 'black'), (3, 7): ('triangle', 'black'), (3, 8): ('circle', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('square', 'black'), (4, 2): ('triangle', 'white'), (4, 3): ('square', 'white'), (4, 4): ('triangle', 'white'), (4, 5): ('triangle', 'black'), (4, 6): ('triangle', 'white'), (4, 7): ('circle', 'black'), (4, 8): ('square', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('square', 'black'), (5, 2): ('triangle', 'black'), (5, 3): ('circle', 'white'), (5, 4): ('triangle', 'black'), (5, 5): ('circle', 'black'), (5, 6): ('triangle', 'black'), (5, 7): ('circle', 'black'), (5, 8): ('circle', 'black')}, {(0, 0): ('triangle', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('square', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('square', 'white'), (0, 6): ('square', 'black'), (0, 7): ('triangle', 'white'), (0, 8): ('triangle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('square', 'black'), (1, 2): ('triangle', 'black'), (1, 3): ('square', 'white'), (1, 4): ('square', 'white'), (1, 5): ('triangle', 'white'), (1, 6): ('triangle', 'black'), (1, 7): ('triangle', 'black'), (1, 8): ('square', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('square', 'black'), (2, 4): ('circle', 'black'), (2, 5): ('circle', 'white'), (2, 6): ('square', 'white'), (2, 7): ('triangle', 'white'), (2, 8): ('square', 'white'), (3, 0): ('circle', 'black'), (3, 1): ('square', 'white'), (3, 2): ('square', 'white'), (3, 3): ('circle', 'white'), (3, 4): ('triangle', 'white'), (3, 5): ('square', 'white'), (3, 6): ('triangle', 'black'), (3, 7): ('square', 'white'), (3, 8): ('square', 'white'), (4, 0): ('square', 'white'), (4, 1): ('square', 'black'), (4, 2): ('triangle', 'black'), (4, 3): ('square', 'white'), (4, 4): ('circle', 'black'), (4, 5): ('triangle', 'black'), (4, 6): ('triangle', 'black'), (4, 7): ('triangle', 'black'), (4, 8): ('triangle', 'black'), (5, 0): ('triangle', 'black'), (5, 1): ('square', 'white'), (5, 2): ('circle', 'black'), (5, 3): ('circle', 'white'), (5, 4): ('square', 'white'), (5, 5): ('circle', 'white'), (5, 6): ('square', 'white'), (5, 7): ('circle', 'white'), (5, 8): ('circle', 'black')}]","(6, 9, 5)"
+172.svg,"[{(0, 0): ('triangle', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('triangle', 'black'), (0, 4): ('circle', 'black'), (0, 5): ('circle', 'white'), (0, 6): ('square', 'white'), (0, 7): ('circle', 'black'), (0, 8): ('triangle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('square', 'white'), (1, 2): ('square', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('triangle', 'white'), (1, 5): ('triangle', 'white'), (1, 6): ('triangle', 'white'), (1, 7): ('circle', 'black'), (1, 8): ('triangle', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('triangle', 'white'), (2, 4): ('circle', 'white'), (2, 5): ('square', 'black'), (2, 6): ('triangle', 'white'), (2, 7): ('circle', 'white'), (2, 8): ('triangle', 'white'), (3, 0): ('circle', 'white'), (3, 1): ('square', 'black'), (3, 2): ('circle', 'black'), (3, 3): ('square', 'black'), (3, 4): ('circle', 'white'), (3, 5): ('square', 'white'), (3, 6): ('circle', 'white'), (3, 7): ('triangle', 'white'), (3, 8): ('circle', 'black'), (4, 0): ('square', 'black'), (4, 1): ('triangle', 'black'), (4, 2): ('triangle', 'black'), (4, 3): ('square', 'black'), (4, 4): ('circle', 'white'), (4, 5): ('triangle', 'white'), (4, 6): ('triangle', 'white'), (4, 7): ('triangle', 'white'), (4, 8): ('triangle', 'white'), (5, 0): ('triangle', 'black'), (5, 1): ('square', 'white'), (5, 2): ('square', 'white'), (5, 3): ('square', 'black'), (5, 4): ('triangle', 'black'), (5, 5): ('triangle', 'white'), (5, 6): ('square', 'black'), (5, 7): ('circle', 'black'), (5, 8): ('triangle', 'black')}, {(0, 0): ('square', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('square', 'white'), (0, 4): ('circle', 'white'), (0, 5): ('triangle', 'black'), (0, 6): ('square', 'black'), (0, 7): ('square', 'white'), (0, 8): ('circle', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('square', 'black'), (1, 5): ('circle', 'white'), (1, 6): ('circle', 'white'), (1, 7): ('square', 'white'), (1, 8): ('circle', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('square', 'black'), (2, 2): ('triangle', 'white'), (2, 3): ('square', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('square', 'white'), (2, 6): ('circle', 'black'), (2, 7): ('square', 'black'), (2, 8): ('square', 'black'), (3, 0): ('square', 'white'), (3, 1): ('triangle', 'white'), (3, 2): ('circle', 'white'), (3, 3): ('circle', 'black'), (3, 4): ('circle', 'black'), (3, 5): ('circle', 'black'), (3, 6): ('triangle', 'black'), (3, 7): ('circle', 'black'), (3, 8): ('square', 'black'), (4, 0): ('circle', 'white'), (4, 1): ('square', 'black'), (4, 2): ('square', 'black'), (4, 3): ('triangle', 'black'), (4, 4): ('circle', 'black'), (4, 5): ('triangle', 'white'), (4, 6): ('triangle', 'white'), (4, 7): ('triangle', 'white'), (4, 8): ('circle', 'black'), (5, 0): ('circle', 'white'), (5, 1): ('triangle', 'white'), (5, 2): ('circle', 'black'), (5, 3): ('circle', 'black'), (5, 4): ('triangle', 'white'), (5, 5): ('circle', 'white'), (5, 6): ('triangle', 'black'), (5, 7): ('triangle', 'white'), (5, 8): ('triangle', 'white')}, {(0, 0): ('circle', 'black'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'black'), (0, 3): ('square', 'white'), (0, 4): ('circle', 'white'), (0, 5): ('circle', 'white'), (0, 6): ('square', 'black'), (0, 7): ('circle', 'black'), (0, 8): ('square', 'black'), (1, 0): ('square', 'white'), (1, 1): ('square', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('triangle', 'white'), (1, 4): ('triangle', 'white'), (1, 5): ('circle', 'white'), (1, 6): ('triangle', 'black'), (1, 7): ('circle', 'white'), (1, 8): ('square', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('circle', 'white'), (2, 3): ('circle', 'white'), (2, 4): ('square', 'black'), (2, 5): ('square', 'black'), (2, 6): ('triangle', 'white'), (2, 7): ('square', 'black'), (2, 8): ('square', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('square', 'white'), (3, 2): ('circle', 'black'), (3, 3): ('square', 'black'), (3, 4): ('triangle', 'white'), (3, 5): ('triangle', 'black'), (3, 6): ('triangle', 'black'), (3, 7): ('triangle', 'black'), (3, 8): ('square', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('square', 'black'), (4, 2): ('square', 'white'), (4, 3): ('square', 'black'), (4, 4): ('square', 'black'), (4, 5): ('circle', 'white'), (4, 6): ('square', 'black'), (4, 7): ('square', 'white'), (4, 8): ('circle', 'black'), (5, 0): ('circle', 'black'), (5, 1): ('square', 'white'), (5, 2): ('square', 'white'), (5, 3): ('circle', 'black'), (5, 4): ('square', 'white'), (5, 5): ('circle', 'white'), (5, 6): ('triangle', 'white'), (5, 7): ('circle', 'white'), (5, 8): ('triangle', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'white'), (0, 3): ('triangle', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('circle', 'white'), (0, 6): ('circle', 'white'), (0, 7): ('square', 'white'), (0, 8): ('square', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('square', 'black'), (1, 2): ('circle', 'black'), (1, 3): ('square', 'white'), (1, 4): ('triangle', 'black'), (1, 5): ('triangle', 'black'), (1, 6): ('circle', 'black'), (1, 7): ('triangle', 'black'), (1, 8): ('circle', 'black'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('triangle', 'white'), (2, 4): ('circle', 'white'), (2, 5): ('square', 'white'), (2, 6): ('circle', 'white'), (2, 7): ('square', 'black'), (2, 8): ('circle', 'black'), (3, 0): ('circle', 'white'), (3, 1): ('square', 'black'), (3, 2): ('square', 'black'), (3, 3): ('square', 'black'), (3, 4): ('circle', 'black'), (3, 5): ('triangle', 'black'), (3, 6): ('triangle', 'white'), (3, 7): ('circle', 'white'), (3, 8): ('square', 'black'), (4, 0): ('circle', 'white'), (4, 1): ('triangle', 'black'), (4, 2): ('square', 'black'), (4, 3): ('triangle', 'white'), (4, 4): ('circle', 'black'), (4, 5): ('circle', 'white'), (4, 6): ('square', 'black'), (4, 7): ('circle', 'black'), (4, 8): ('triangle', 'white'), (5, 0): ('triangle', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('circle', 'white'), (5, 3): ('square', 'black'), (5, 4): ('triangle', 'white'), (5, 5): ('triangle', 'white'), (5, 6): ('square', 'black'), (5, 7): ('circle', 'white'), (5, 8): ('square', 'white')}, {(0, 0): ('circle', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('circle', 'black'), (0, 5): ('triangle', 'black'), (0, 6): ('square', 'black'), (0, 7): ('square', 'black'), (0, 8): ('circle', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('circle', 'black'), (1, 3): ('square', 'white'), (1, 4): ('square', 'black'), (1, 5): ('triangle', 'black'), (1, 6): ('square', 'black'), (1, 7): ('square', 'black'), (1, 8): ('circle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('triangle', 'black'), (2, 3): ('square', 'white'), (2, 4): ('triangle', 'white'), (2, 5): ('triangle', 'white'), (2, 6): ('square', 'white'), (2, 7): ('square', 'white'), (2, 8): ('circle', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('triangle', 'black'), (3, 3): ('square', 'black'), (3, 4): ('circle', 'white'), (3, 5): ('square', 'white'), (3, 6): ('circle', 'black'), (3, 7): ('square', 'white'), (3, 8): ('square', 'white'), (4, 0): ('circle', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('circle', 'white'), (4, 3): ('circle', 'white'), (4, 4): ('triangle', 'black'), (4, 5): ('square', 'black'), (4, 6): ('triangle', 'black'), (4, 7): ('triangle', 'black'), (4, 8): ('triangle', 'black'), (5, 0): ('triangle', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('square', 'white'), (5, 3): ('square', 'white'), (5, 4): ('triangle', 'white'), (5, 5): ('triangle', 'white'), (5, 6): ('circle', 'black'), (5, 7): ('square', 'black'), (5, 8): ('circle', 'white')}]","(6, 9, 5)"
+173.svg,"[{(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('square', 'white'), (0, 3): ('circle', 'white'), (0, 4): ('triangle', 'black'), (0, 5): ('triangle', 'black'), (0, 6): ('square', 'white'), (0, 7): ('triangle', 'white'), (0, 8): ('triangle', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('circle', 'black'), (1, 3): ('triangle', 'black'), (1, 4): ('square', 'black'), (1, 5): ('circle', 'white'), (1, 6): ('square', 'black'), (1, 7): ('triangle', 'white'), (1, 8): ('triangle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('circle', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('circle', 'white'), (2, 5): ('circle', 'black'), (2, 6): ('circle', 'black'), (2, 7): ('triangle', 'white'), (2, 8): ('circle', 'black'), (3, 0): ('square', 'white'), (3, 1): ('triangle', 'black'), (3, 2): ('square', 'black'), (3, 3): ('triangle', 'white'), (3, 4): ('circle', 'white'), (3, 5): ('circle', 'white'), (3, 6): ('square', 'white'), (3, 7): ('triangle', 'black'), (3, 8): ('triangle', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('square', 'white'), (4, 2): ('circle', 'black'), (4, 3): ('square', 'white'), (4, 4): ('square', 'white'), (4, 5): ('circle', 'white'), (4, 6): ('square', 'black'), (4, 7): ('square', 'black'), (4, 8): ('square', 'black'), (5, 0): ('triangle', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('circle', 'white'), (5, 3): ('square', 'white'), (5, 4): ('circle', 'white'), (5, 5): ('triangle', 'black'), (5, 6): ('square', 'black'), (5, 7): ('circle', 'black'), (5, 8): ('square', 'black')}, {(0, 0): ('square', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('square', 'white'), (0, 4): ('square', 'black'), (0, 5): ('square', 'white'), (0, 6): ('triangle', 'white'), (0, 7): ('triangle', 'white'), (0, 8): ('triangle', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('square', 'black'), (1, 3): ('square', 'black'), (1, 4): ('square', 'black'), (1, 5): ('circle', 'white'), (1, 6): ('square', 'black'), (1, 7): ('triangle', 'white'), (1, 8): ('square', 'black'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('square', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('circle', 'black'), (2, 5): ('triangle', 'white'), (2, 6): ('square', 'white'), (2, 7): ('triangle', 'white'), (2, 8): ('square', 'white'), (3, 0): ('circle', 'black'), (3, 1): ('triangle', 'black'), (3, 2): ('circle', 'white'), (3, 3): ('triangle', 'black'), (3, 4): ('square', 'white'), (3, 5): ('triangle', 'white'), (3, 6): ('triangle', 'white'), (3, 7): ('triangle', 'white'), (3, 8): ('circle', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('square', 'black'), (4, 2): ('triangle', 'white'), (4, 3): ('square', 'white'), (4, 4): ('triangle', 'black'), (4, 5): ('circle', 'white'), (4, 6): ('circle', 'white'), (4, 7): ('triangle', 'black'), (4, 8): ('square', 'white'), (5, 0): ('square', 'white'), (5, 1): ('triangle', 'black'), (5, 2): ('circle', 'black'), (5, 3): ('circle', 'black'), (5, 4): ('square', 'black'), (5, 5): ('circle', 'black'), (5, 6): ('triangle', 'white'), (5, 7): ('circle', 'black'), (5, 8): ('triangle', 'black')}, {(0, 0): ('circle', 'black'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('square', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('circle', 'black'), (0, 6): ('circle', 'white'), (0, 7): ('square', 'black'), (0, 8): ('triangle', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('square', 'white'), (1, 5): ('triangle', 'white'), (1, 6): ('triangle', 'white'), (1, 7): ('circle', 'white'), (1, 8): ('circle', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('square', 'black'), (2, 3): ('square', 'white'), (2, 4): ('square', 'white'), (2, 5): ('square', 'white'), (2, 6): ('square', 'white'), (2, 7): ('square', 'white'), (2, 8): ('triangle', 'black'), (3, 0): ('circle', 'white'), (3, 1): ('circle', 'black'), (3, 2): ('square', 'black'), (3, 3): ('square', 'black'), (3, 4): ('circle', 'black'), (3, 5): ('triangle', 'white'), (3, 6): ('triangle', 'black'), (3, 7): ('triangle', 'white'), (3, 8): ('square', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('square', 'white'), (4, 2): ('square', 'black'), (4, 3): ('circle', 'white'), (4, 4): ('square', 'white'), (4, 5): ('triangle', 'white'), (4, 6): ('square', 'black'), (4, 7): ('square', 'white'), (4, 8): ('triangle', 'white'), (5, 0): ('triangle', 'white'), (5, 1): ('triangle', 'black'), (5, 2): ('circle', 'white'), (5, 3): ('triangle', 'white'), (5, 4): ('square', 'black'), (5, 5): ('circle', 'white'), (5, 6): ('square', 'black'), (5, 7): ('circle', 'white'), (5, 8): ('circle', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('triangle', 'black'), (0, 6): ('square', 'black'), (0, 7): ('square', 'black'), (0, 8): ('circle', 'white'), (1, 0): ('triangle', 'white'), (1, 1): ('square', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('square', 'white'), (1, 4): ('square', 'white'), (1, 5): ('triangle', 'white'), (1, 6): ('square', 'black'), (1, 7): ('square', 'white'), (1, 8): ('square', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('square', 'white'), (2, 3): ('circle', 'black'), (2, 4): ('triangle', 'white'), (2, 5): ('square', 'black'), (2, 6): ('square', 'white'), (2, 7): ('circle', 'white'), (2, 8): ('circle', 'black'), (3, 0): ('square', 'white'), (3, 1): ('circle', 'white'), (3, 2): ('circle', 'black'), (3, 3): ('triangle', 'black'), (3, 4): ('square', 'white'), (3, 5): ('circle', 'white'), (3, 6): ('circle', 'white'), (3, 7): ('circle', 'black'), (3, 8): ('circle', 'white'), (4, 0): ('square', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('circle', 'black'), (4, 3): ('triangle', 'black'), (4, 4): ('triangle', 'black'), (4, 5): ('triangle', 'white'), (4, 6): ('circle', 'black'), (4, 7): ('circle', 'black'), (4, 8): ('circle', 'black'), (5, 0): ('circle', 'black'), (5, 1): ('square', 'white'), (5, 2): ('triangle', 'black'), (5, 3): ('square', 'white'), (5, 4): ('circle', 'black'), (5, 5): ('triangle', 'black'), (5, 6): ('circle', 'white'), (5, 7): ('triangle', 'black'), (5, 8): ('triangle', 'white')}, {(0, 0): ('square', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('triangle', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('circle', 'white'), (0, 6): ('triangle', 'white'), (0, 7): ('circle', 'white'), (0, 8): ('triangle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('square', 'white'), (1, 2): ('square', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('triangle', 'black'), (1, 5): ('triangle', 'black'), (1, 6): ('circle', 'black'), (1, 7): ('triangle', 'white'), (1, 8): ('triangle', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('triangle', 'white'), (2, 3): ('triangle', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('square', 'white'), (2, 6): ('circle', 'white'), (2, 7): ('circle', 'white'), (2, 8): ('square', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('square', 'black'), (3, 2): ('square', 'white'), (3, 3): ('triangle', 'white'), (3, 4): ('square', 'black'), (3, 5): ('square', 'black'), (3, 6): ('triangle', 'white'), (3, 7): ('circle', 'white'), (3, 8): ('circle', 'black'), (4, 0): ('square', 'black'), (4, 1): ('square', 'white'), (4, 2): ('square', 'white'), (4, 3): ('circle', 'white'), (4, 4): ('triangle', 'black'), (4, 5): ('triangle', 'black'), (4, 6): ('triangle', 'black'), (4, 7): ('circle', 'white'), (4, 8): ('triangle', 'black'), (5, 0): ('triangle', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('square', 'black'), (5, 3): ('circle', 'black'), (5, 4): ('triangle', 'white'), (5, 5): ('triangle', 'white'), (5, 6): ('square', 'white'), (5, 7): ('square', 'white'), (5, 8): ('circle', 'black')}]","(6, 9, 5)"
+174.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('square', 'black'), (0, 2): ('square', 'white'), (0, 3): ('triangle', 'white'), (0, 4): ('triangle', 'white'), (0, 5): ('square', 'white'), (0, 6): ('square', 'black'), (0, 7): ('square', 'white'), (0, 8): ('square', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('triangle', 'black'), (1, 3): ('square', 'black'), (1, 4): ('circle', 'black'), (1, 5): ('triangle', 'black'), (1, 6): ('square', 'black'), (1, 7): ('square', 'black'), (1, 8): ('circle', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('triangle', 'black'), (2, 4): ('square', 'white'), (2, 5): ('triangle', 'black'), (2, 6): ('square', 'white'), (2, 7): ('square', 'black'), (2, 8): ('triangle', 'white'), (3, 0): ('circle', 'white'), (3, 1): ('circle', 'white'), (3, 2): ('square', 'black'), (3, 3): ('square', 'black'), (3, 4): ('triangle', 'white'), (3, 5): ('circle', 'white'), (3, 6): ('circle', 'black'), (3, 7): ('triangle', 'black'), (3, 8): ('triangle', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('triangle', 'black'), (4, 2): ('square', 'black'), (4, 3): ('circle', 'white'), (4, 4): ('circle', 'white'), (4, 5): ('circle', 'black'), (4, 6): ('square', 'white'), (4, 7): ('circle', 'black'), (4, 8): ('circle', 'black'), (5, 0): ('circle', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('square', 'black'), (5, 3): ('circle', 'white'), (5, 4): ('circle', 'black'), (5, 5): ('triangle', 'white'), (5, 6): ('triangle', 'white'), (5, 7): ('square', 'white'), (5, 8): ('triangle', 'black')}, {(0, 0): ('triangle', 'black'), (0, 1): ('square', 'black'), (0, 2): ('circle', 'white'), (0, 3): ('square', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('triangle', 'black'), (0, 6): ('circle', 'white'), (0, 7): ('circle', 'black'), (0, 8): ('circle', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('square', 'white'), (1, 2): ('triangle', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('triangle', 'white'), (1, 6): ('triangle', 'black'), (1, 7): ('square', 'white'), (1, 8): ('circle', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('square', 'white'), (2, 3): ('circle', 'black'), (2, 4): ('circle', 'white'), (2, 5): ('square', 'black'), (2, 6): ('circle', 'white'), (2, 7): ('triangle', 'white'), (2, 8): ('triangle', 'white'), (3, 0): ('square', 'white'), (3, 1): ('square', 'black'), (3, 2): ('square', 'black'), (3, 3): ('square', 'black'), (3, 4): ('square', 'black'), (3, 5): ('triangle', 'black'), (3, 6): ('square', 'black'), (3, 7): ('circle', 'black'), (3, 8): ('square', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('circle', 'white'), (4, 2): ('triangle', 'white'), (4, 3): ('square', 'white'), (4, 4): ('square', 'white'), (4, 5): ('triangle', 'white'), (4, 6): ('triangle', 'black'), (4, 7): ('square', 'black'), (4, 8): ('triangle', 'white'), (5, 0): ('triangle', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('triangle', 'black'), (5, 3): ('triangle', 'black'), (5, 4): ('square', 'black'), (5, 5): ('triangle', 'black'), (5, 6): ('triangle', 'white'), (5, 7): ('square', 'white'), (5, 8): ('triangle', 'black')}, {(0, 0): ('triangle', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('square', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('square', 'white'), (0, 6): ('triangle', 'white'), (0, 7): ('square', 'black'), (0, 8): ('triangle', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('triangle', 'white'), (1, 3): ('triangle', 'white'), (1, 4): ('triangle', 'white'), (1, 5): ('triangle', 'black'), (1, 6): ('square', 'black'), (1, 7): ('square', 'white'), (1, 8): ('triangle', 'black'), (2, 0): ('square', 'black'), (2, 1): ('square', 'white'), (2, 2): ('circle', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('square', 'white'), (2, 5): ('circle', 'black'), (2, 6): ('square', 'white'), (2, 7): ('triangle', 'black'), (2, 8): ('circle', 'black'), (3, 0): ('circle', 'white'), (3, 1): ('circle', 'black'), (3, 2): ('circle', 'black'), (3, 3): ('circle', 'white'), (3, 4): ('square', 'black'), (3, 5): ('circle', 'black'), (3, 6): ('square', 'black'), (3, 7): ('circle', 'black'), (3, 8): ('triangle', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('triangle', 'white'), (4, 2): ('circle', 'white'), (4, 3): ('triangle', 'white'), (4, 4): ('triangle', 'black'), (4, 5): ('circle', 'white'), (4, 6): ('triangle', 'white'), (4, 7): ('square', 'white'), (4, 8): ('triangle', 'white'), (5, 0): ('square', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('triangle', 'white'), (5, 3): ('triangle', 'black'), (5, 4): ('triangle', 'black'), (5, 5): ('square', 'white'), (5, 6): ('square', 'black'), (5, 7): ('square', 'white'), (5, 8): ('triangle', 'black')}, {(0, 0): ('circle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('square', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('circle', 'white'), (0, 6): ('triangle', 'white'), (0, 7): ('square', 'black'), (0, 8): ('circle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('square', 'black'), (1, 2): ('square', 'white'), (1, 3): ('triangle', 'white'), (1, 4): ('square', 'black'), (1, 5): ('square', 'black'), (1, 6): ('circle', 'white'), (1, 7): ('square', 'white'), (1, 8): ('triangle', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('circle', 'black'), (2, 3): ('square', 'black'), (2, 4): ('triangle', 'white'), (2, 5): ('square', 'black'), (2, 6): ('triangle', 'white'), (2, 7): ('circle', 'white'), (2, 8): ('circle', 'white'), (3, 0): ('square', 'black'), (3, 1): ('square', 'black'), (3, 2): ('circle', 'black'), (3, 3): ('circle', 'black'), (3, 4): ('circle', 'white'), (3, 5): ('square', 'black'), (3, 6): ('circle', 'black'), (3, 7): ('triangle', 'white'), (3, 8): ('triangle', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('triangle', 'white'), (4, 3): ('circle', 'white'), (4, 4): ('square', 'white'), (4, 5): ('circle', 'black'), (4, 6): ('circle', 'black'), (4, 7): ('circle', 'black'), (4, 8): ('triangle', 'black'), (5, 0): ('square', 'black'), (5, 1): ('triangle', 'black'), (5, 2): ('triangle', 'black'), (5, 3): ('triangle', 'white'), (5, 4): ('circle', 'white'), (5, 5): ('triangle', 'black'), (5, 6): ('circle', 'black'), (5, 7): ('triangle', 'black'), (5, 8): ('circle', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('square', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('circle', 'black'), (0, 5): ('triangle', 'black'), (0, 6): ('square', 'white'), (0, 7): ('square', 'black'), (0, 8): ('triangle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('circle', 'black'), (1, 3): ('triangle', 'black'), (1, 4): ('square', 'white'), (1, 5): ('square', 'white'), (1, 6): ('circle', 'white'), (1, 7): ('triangle', 'black'), (1, 8): ('circle', 'black'), (2, 0): ('square', 'black'), (2, 1): ('square', 'white'), (2, 2): ('square', 'white'), (2, 3): ('square', 'black'), (2, 4): ('square', 'white'), (2, 5): ('triangle', 'white'), (2, 6): ('triangle', 'black'), (2, 7): ('circle', 'white'), (2, 8): ('circle', 'black'), (3, 0): ('square', 'black'), (3, 1): ('circle', 'white'), (3, 2): ('square', 'white'), (3, 3): ('triangle', 'white'), (3, 4): ('triangle', 'white'), (3, 5): ('triangle', 'black'), (3, 6): ('circle', 'black'), (3, 7): ('circle', 'black'), (3, 8): ('circle', 'white'), (4, 0): ('square', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('circle', 'black'), (4, 3): ('square', 'white'), (4, 4): ('triangle', 'black'), (4, 5): ('circle', 'white'), (4, 6): ('circle', 'black'), (4, 7): ('square', 'black'), (4, 8): ('triangle', 'white'), (5, 0): ('triangle', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('square', 'white'), (5, 3): ('square', 'black'), (5, 4): ('square', 'white'), (5, 5): ('square', 'white'), (5, 6): ('triangle', 'black'), (5, 7): ('square', 'white'), (5, 8): ('circle', 'black')}]","(6, 9, 5)"
+175.svg,"[{(0, 0): ('circle', 'white'), (0, 1): ('square', 'white'), (0, 2): ('square', 'white'), (0, 3): ('square', 'black'), (0, 4): ('square', 'black'), (0, 5): ('square', 'white'), (0, 6): ('square', 'white'), (0, 7): ('triangle', 'white'), (0, 8): ('square', 'white'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('square', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('triangle', 'black'), (1, 6): ('triangle', 'white'), (1, 7): ('triangle', 'white'), (1, 8): ('square', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('square', 'white'), (2, 2): ('circle', 'black'), (2, 3): ('circle', 'black'), (2, 4): ('square', 'white'), (2, 5): ('square', 'white'), (2, 6): ('triangle', 'black'), (2, 7): ('triangle', 'white'), (2, 8): ('circle', 'white'), (3, 0): ('circle', 'white'), (3, 1): ('triangle', 'black'), (3, 2): ('square', 'white'), (3, 3): ('circle', 'white'), (3, 4): ('circle', 'white'), (3, 5): ('circle', 'white'), (3, 6): ('circle', 'black'), (3, 7): ('triangle', 'black'), (3, 8): ('triangle', 'black'), (4, 0): ('square', 'black'), (4, 1): ('square', 'white'), (4, 2): ('square', 'black'), (4, 3): ('circle', 'white'), (4, 4): ('circle', 'black'), (4, 5): ('square', 'white'), (4, 6): ('triangle', 'black'), (4, 7): ('circle', 'black'), (4, 8): ('square', 'black'), (5, 0): ('triangle', 'white'), (5, 1): ('square', 'black'), (5, 2): ('triangle', 'black'), (5, 3): ('triangle', 'white'), (5, 4): ('triangle', 'white'), (5, 5): ('triangle', 'black'), (5, 6): ('circle', 'black'), (5, 7): ('circle', 'white'), (5, 8): ('square', 'white')}, {(0, 0): ('triangle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('square', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('circle', 'black'), (0, 6): ('triangle', 'white'), (0, 7): ('square', 'white'), (0, 8): ('square', 'black'), (1, 0): ('square', 'black'), (1, 1): ('square', 'white'), (1, 2): ('square', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('square', 'white'), (1, 6): ('circle', 'black'), (1, 7): ('square', 'white'), (1, 8): ('circle', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('square', 'white'), (2, 4): ('square', 'black'), (2, 5): ('circle', 'black'), (2, 6): ('circle', 'black'), (2, 7): ('circle', 'white'), (2, 8): ('triangle', 'black'), (3, 0): ('square', 'white'), (3, 1): ('square', 'white'), (3, 2): ('circle', 'black'), (3, 3): ('triangle', 'white'), (3, 4): ('triangle', 'black'), (3, 5): ('square', 'black'), (3, 6): ('circle', 'white'), (3, 7): ('triangle', 'white'), (3, 8): ('triangle', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('triangle', 'white'), (4, 2): ('circle', 'black'), (4, 3): ('triangle', 'white'), (4, 4): ('triangle', 'white'), (4, 5): ('triangle', 'black'), (4, 6): ('circle', 'black'), (4, 7): ('square', 'black'), (4, 8): ('square', 'white'), (5, 0): ('circle', 'white'), (5, 1): ('square', 'white'), (5, 2): ('square', 'black'), (5, 3): ('circle', 'black'), (5, 4): ('triangle', 'white'), (5, 5): ('triangle', 'black'), (5, 6): ('square', 'white'), (5, 7): ('square', 'black'), (5, 8): ('square', 'black')}, {(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('square', 'black'), (0, 4): ('square', 'white'), (0, 5): ('square', 'white'), (0, 6): ('square', 'black'), (0, 7): ('circle', 'white'), (0, 8): ('square', 'white'), (1, 0): ('square', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('square', 'white'), (1, 3): ('square', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('circle', 'black'), (1, 6): ('triangle', 'white'), (1, 7): ('square', 'black'), (1, 8): ('square', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('square', 'black'), (2, 2): ('square', 'white'), (2, 3): ('circle', 'white'), (2, 4): ('square', 'white'), (2, 5): ('circle', 'black'), (2, 6): ('square', 'black'), (2, 7): ('circle', 'black'), (2, 8): ('circle', 'black'), (3, 0): ('circle', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('square', 'black'), (3, 3): ('square', 'white'), (3, 4): ('circle', 'white'), (3, 5): ('circle', 'black'), (3, 6): ('square', 'black'), (3, 7): ('circle', 'white'), (3, 8): ('triangle', 'black'), (4, 0): ('triangle', 'white'), (4, 1): ('square', 'white'), (4, 2): ('circle', 'white'), (4, 3): ('circle', 'black'), (4, 4): ('circle', 'white'), (4, 5): ('triangle', 'black'), (4, 6): ('triangle', 'white'), (4, 7): ('square', 'black'), (4, 8): ('square', 'black'), (5, 0): ('circle', 'white'), (5, 1): ('square', 'black'), (5, 2): ('square', 'white'), (5, 3): ('square', 'black'), (5, 4): ('circle', 'white'), (5, 5): ('square', 'black'), (5, 6): ('triangle', 'white'), (5, 7): ('square', 'white'), (5, 8): ('circle', 'black')}, {(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('square', 'black'), (0, 3): ('circle', 'white'), (0, 4): ('triangle', 'white'), (0, 5): ('square', 'black'), (0, 6): ('square', 'black'), (0, 7): ('square', 'black'), (0, 8): ('circle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('square', 'black'), (1, 2): ('square', 'white'), (1, 3): ('square', 'black'), (1, 4): ('circle', 'black'), (1, 5): ('triangle', 'white'), (1, 6): ('square', 'white'), (1, 7): ('triangle', 'white'), (1, 8): ('circle', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('square', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('triangle', 'black'), (2, 6): ('square', 'white'), (2, 7): ('circle', 'white'), (2, 8): ('triangle', 'black'), (3, 0): ('square', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('square', 'black'), (3, 3): ('triangle', 'white'), (3, 4): ('circle', 'black'), (3, 5): ('triangle', 'white'), (3, 6): ('circle', 'white'), (3, 7): ('circle', 'white'), (3, 8): ('triangle', 'white'), (4, 0): ('circle', 'black'), (4, 1): ('square', 'white'), (4, 2): ('circle', 'white'), (4, 3): ('triangle', 'black'), (4, 4): ('circle', 'black'), (4, 5): ('circle', 'black'), (4, 6): ('square', 'white'), (4, 7): ('triangle', 'white'), (4, 8): ('square', 'white'), (5, 0): ('square', 'white'), (5, 1): ('triangle', 'black'), (5, 2): ('square', 'black'), (5, 3): ('circle', 'white'), (5, 4): ('circle', 'black'), (5, 5): ('circle', 'white'), (5, 6): ('circle', 'black'), (5, 7): ('triangle', 'black'), (5, 8): ('circle', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('square', 'white'), (0, 4): ('square', 'white'), (0, 5): ('triangle', 'black'), (0, 6): ('triangle', 'black'), (0, 7): ('triangle', 'black'), (0, 8): ('triangle', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('circle', 'white'), (1, 3): ('square', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('square', 'white'), (1, 6): ('triangle', 'black'), (1, 7): ('circle', 'black'), (1, 8): ('circle', 'white'), (2, 0): ('square', 'white'), (2, 1): ('square', 'white'), (2, 2): ('square', 'white'), (2, 3): ('square', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('triangle', 'white'), (2, 6): ('square', 'white'), (2, 7): ('square', 'white'), (2, 8): ('square', 'white'), (3, 0): ('square', 'black'), (3, 1): ('circle', 'white'), (3, 2): ('circle', 'white'), (3, 3): ('square', 'black'), (3, 4): ('circle', 'white'), (3, 5): ('triangle', 'white'), (3, 6): ('square', 'black'), (3, 7): ('square', 'white'), (3, 8): ('circle', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('triangle', 'black'), (4, 2): ('circle', 'black'), (4, 3): ('circle', 'white'), (4, 4): ('circle', 'black'), (4, 5): ('circle', 'white'), (4, 6): ('triangle', 'black'), (4, 7): ('square', 'white'), (4, 8): ('triangle', 'black'), (5, 0): ('circle', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('square', 'white'), (5, 3): ('circle', 'white'), (5, 4): ('circle', 'white'), (5, 5): ('square', 'white'), (5, 6): ('square', 'white'), (5, 7): ('triangle', 'black'), (5, 8): ('square', 'black')}]","(6, 9, 5)"
+176.svg,"[{(0, 0): ('square', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'white'), (0, 3): ('square', 'white'), (0, 4): ('triangle', 'black'), (0, 5): ('square', 'white'), (0, 6): ('triangle', 'black'), (0, 7): ('circle', 'black'), (0, 8): ('circle', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('square', 'black'), (1, 3): ('square', 'black'), (1, 4): ('circle', 'black'), (1, 5): ('square', 'black'), (1, 6): ('square', 'white'), (1, 7): ('circle', 'black'), (1, 8): ('circle', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('square', 'white'), (2, 5): ('square', 'black'), (2, 6): ('triangle', 'white'), (2, 7): ('circle', 'white'), (2, 8): ('square', 'black'), (3, 0): ('square', 'black'), (3, 1): ('square', 'black'), (3, 2): ('square', 'white'), (3, 3): ('circle', 'black'), (3, 4): ('circle', 'black'), (3, 5): ('circle', 'black'), (3, 6): ('circle', 'black'), (3, 7): ('square', 'white'), (3, 8): ('circle', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('square', 'black'), (4, 2): ('triangle', 'white'), (4, 3): ('circle', 'white'), (4, 4): ('square', 'white'), (4, 5): ('triangle', 'black'), (4, 6): ('circle', 'white'), (4, 7): ('square', 'black'), (4, 8): ('triangle', 'black'), (5, 0): ('circle', 'black'), (5, 1): ('square', 'black'), (5, 2): ('circle', 'white'), (5, 3): ('circle', 'black'), (5, 4): ('circle', 'white'), (5, 5): ('circle', 'black'), (5, 6): ('triangle', 'white'), (5, 7): ('square', 'black'), (5, 8): ('square', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('square', 'white'), (0, 4): ('triangle', 'black'), (0, 5): ('triangle', 'black'), (0, 6): ('circle', 'black'), (0, 7): ('circle', 'black'), (0, 8): ('circle', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('square', 'black'), (1, 4): ('square', 'white'), (1, 5): ('circle', 'white'), (1, 6): ('square', 'white'), (1, 7): ('circle', 'white'), (1, 8): ('triangle', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('circle', 'black'), (2, 4): ('circle', 'black'), (2, 5): ('circle', 'white'), (2, 6): ('triangle', 'white'), (2, 7): ('triangle', 'white'), (2, 8): ('triangle', 'white'), (3, 0): ('triangle', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('triangle', 'white'), (3, 3): ('circle', 'black'), (3, 4): ('triangle', 'white'), (3, 5): ('triangle', 'white'), (3, 6): ('triangle', 'black'), (3, 7): ('circle', 'white'), (3, 8): ('circle', 'white'), (4, 0): ('circle', 'white'), (4, 1): ('circle', 'black'), (4, 2): ('triangle', 'black'), (4, 3): ('circle', 'black'), (4, 4): ('triangle', 'black'), (4, 5): ('circle', 'black'), (4, 6): ('triangle', 'white'), (4, 7): ('triangle', 'white'), (4, 8): ('circle', 'white'), (5, 0): ('triangle', 'black'), (5, 1): ('square', 'black'), (5, 2): ('triangle', 'black'), (5, 3): ('circle', 'black'), (5, 4): ('square', 'white'), (5, 5): ('triangle', 'black'), (5, 6): ('triangle', 'white'), (5, 7): ('square', 'white'), (5, 8): ('circle', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('triangle', 'black'), (0, 4): ('circle', 'black'), (0, 5): ('triangle', 'black'), (0, 6): ('circle', 'black'), (0, 7): ('square', 'white'), (0, 8): ('square', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'black'), (1, 3): ('square', 'black'), (1, 4): ('square', 'white'), (1, 5): ('square', 'white'), (1, 6): ('circle', 'black'), (1, 7): ('square', 'black'), (1, 8): ('triangle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('triangle', 'white'), (2, 6): ('triangle', 'white'), (2, 7): ('circle', 'black'), (2, 8): ('circle', 'black'), (3, 0): ('square', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('square', 'white'), (3, 3): ('circle', 'black'), (3, 4): ('circle', 'white'), (3, 5): ('circle', 'white'), (3, 6): ('circle', 'black'), (3, 7): ('triangle', 'black'), (3, 8): ('circle', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('triangle', 'black'), (4, 2): ('circle', 'black'), (4, 3): ('square', 'black'), (4, 4): ('triangle', 'black'), (4, 5): ('square', 'black'), (4, 6): ('circle', 'black'), (4, 7): ('circle', 'black'), (4, 8): ('circle', 'white'), (5, 0): ('triangle', 'black'), (5, 1): ('square', 'black'), (5, 2): ('circle', 'white'), (5, 3): ('square', 'black'), (5, 4): ('square', 'white'), (5, 5): ('circle', 'black'), (5, 6): ('circle', 'white'), (5, 7): ('circle', 'black'), (5, 8): ('square', 'black')}, {(0, 0): ('square', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'white'), (0, 3): ('square', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('circle', 'white'), (0, 6): ('triangle', 'white'), (0, 7): ('circle', 'black'), (0, 8): ('circle', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('square', 'black'), (1, 4): ('square', 'white'), (1, 5): ('triangle', 'black'), (1, 6): ('square', 'black'), (1, 7): ('triangle', 'black'), (1, 8): ('circle', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('circle', 'white'), (2, 3): ('square', 'black'), (2, 4): ('square', 'white'), (2, 5): ('triangle', 'black'), (2, 6): ('triangle', 'black'), (2, 7): ('triangle', 'black'), (2, 8): ('triangle', 'white'), (3, 0): ('triangle', 'white'), (3, 1): ('triangle', 'black'), (3, 2): ('circle', 'black'), (3, 3): ('square', 'black'), (3, 4): ('triangle', 'black'), (3, 5): ('square', 'black'), (3, 6): ('circle', 'white'), (3, 7): ('circle', 'white'), (3, 8): ('circle', 'black'), (4, 0): ('square', 'black'), (4, 1): ('triangle', 'black'), (4, 2): ('square', 'black'), (4, 3): ('square', 'black'), (4, 4): ('triangle', 'black'), (4, 5): ('circle', 'white'), (4, 6): ('triangle', 'black'), (4, 7): ('square', 'black'), (4, 8): ('triangle', 'black'), (5, 0): ('circle', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('triangle', 'black'), (5, 3): ('square', 'black'), (5, 4): ('triangle', 'white'), (5, 5): ('square', 'black'), (5, 6): ('circle', 'black'), (5, 7): ('square', 'white'), (5, 8): ('triangle', 'black')}, {(0, 0): ('square', 'white'), (0, 1): ('square', 'white'), (0, 2): ('triangle', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('triangle', 'white'), (0, 6): ('triangle', 'black'), (0, 7): ('square', 'white'), (0, 8): ('triangle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'black'), (1, 3): ('circle', 'white'), (1, 4): ('triangle', 'white'), (1, 5): ('triangle', 'white'), (1, 6): ('circle', 'black'), (1, 7): ('square', 'white'), (1, 8): ('square', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('square', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('triangle', 'white'), (2, 5): ('square', 'white'), (2, 6): ('square', 'white'), (2, 7): ('triangle', 'black'), (2, 8): ('triangle', 'white'), (3, 0): ('square', 'black'), (3, 1): ('square', 'white'), (3, 2): ('square', 'white'), (3, 3): ('square', 'white'), (3, 4): ('circle', 'black'), (3, 5): ('circle', 'black'), (3, 6): ('circle', 'white'), (3, 7): ('circle', 'white'), (3, 8): ('square', 'white'), (4, 0): ('triangle', 'white'), (4, 1): ('triangle', 'black'), (4, 2): ('square', 'white'), (4, 3): ('triangle', 'white'), (4, 4): ('triangle', 'white'), (4, 5): ('square', 'black'), (4, 6): ('square', 'black'), (4, 7): ('circle', 'black'), (4, 8): ('triangle', 'white'), (5, 0): ('triangle', 'white'), (5, 1): ('square', 'black'), (5, 2): ('circle', 'white'), (5, 3): ('square', 'black'), (5, 4): ('circle', 'white'), (5, 5): ('circle', 'white'), (5, 6): ('circle', 'white'), (5, 7): ('triangle', 'black'), (5, 8): ('triangle', 'black')}]","(6, 9, 5)"
+177.svg,"[{(0, 0): ('square', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('triangle', 'black'), (0, 3): ('square', 'white'), (0, 4): ('circle', 'white'), (0, 5): ('square', 'black'), (0, 6): ('circle', 'black'), (0, 7): ('triangle', 'black'), (0, 8): ('triangle', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('square', 'black'), (1, 3): ('triangle', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('triangle', 'white'), (1, 6): ('square', 'white'), (1, 7): ('triangle', 'white'), (1, 8): ('square', 'black'), (2, 0): ('square', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('square', 'white'), (2, 4): ('square', 'black'), (2, 5): ('triangle', 'white'), (2, 6): ('circle', 'white'), (2, 7): ('square', 'white'), (2, 8): ('triangle', 'white'), (3, 0): ('circle', 'white'), (3, 1): ('square', 'black'), (3, 2): ('circle', 'white'), (3, 3): ('circle', 'black'), (3, 4): ('triangle', 'black'), (3, 5): ('circle', 'white'), (3, 6): ('triangle', 'white'), (3, 7): ('square', 'black'), (3, 8): ('square', 'white'), (4, 0): ('square', 'black'), (4, 1): ('triangle', 'black'), (4, 2): ('square', 'white'), (4, 3): ('circle', 'white'), (4, 4): ('triangle', 'black'), (4, 5): ('triangle', 'black'), (4, 6): ('circle', 'black'), (4, 7): ('triangle', 'black'), (4, 8): ('circle', 'black'), (5, 0): ('square', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('triangle', 'black'), (5, 3): ('triangle', 'black'), (5, 4): ('circle', 'black'), (5, 5): ('square', 'white'), (5, 6): ('square', 'white'), (5, 7): ('circle', 'white'), (5, 8): ('circle', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'white'), (0, 3): ('circle', 'white'), (0, 4): ('square', 'white'), (0, 5): ('circle', 'black'), (0, 6): ('triangle', 'black'), (0, 7): ('triangle', 'black'), (0, 8): ('square', 'white'), (1, 0): ('square', 'black'), (1, 1): ('square', 'black'), (1, 2): ('square', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('triangle', 'black'), (1, 5): ('circle', 'black'), (1, 6): ('circle', 'white'), (1, 7): ('square', 'white'), (1, 8): ('circle', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('circle', 'white'), (2, 3): ('square', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('square', 'white'), (2, 6): ('triangle', 'white'), (2, 7): ('triangle', 'white'), (2, 8): ('triangle', 'black'), (3, 0): ('square', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('triangle', 'white'), (3, 3): ('circle', 'white'), (3, 4): ('square', 'white'), (3, 5): ('square', 'white'), (3, 6): ('square', 'black'), (3, 7): ('circle', 'white'), (3, 8): ('circle', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('circle', 'white'), (4, 2): ('circle', 'black'), (4, 3): ('square', 'black'), (4, 4): ('square', 'white'), (4, 5): ('square', 'white'), (4, 6): ('triangle', 'black'), (4, 7): ('triangle', 'black'), (4, 8): ('triangle', 'black'), (5, 0): ('circle', 'black'), (5, 1): ('square', 'white'), (5, 2): ('square', 'white'), (5, 3): ('square', 'black'), (5, 4): ('triangle', 'black'), (5, 5): ('triangle', 'white'), (5, 6): ('triangle', 'white'), (5, 7): ('triangle', 'black'), (5, 8): ('triangle', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('square', 'black'), (0, 3): ('triangle', 'white'), (0, 4): ('triangle', 'black'), (0, 5): ('triangle', 'black'), (0, 6): ('triangle', 'black'), (0, 7): ('triangle', 'black'), (0, 8): ('triangle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('square', 'white'), (1, 2): ('square', 'black'), (1, 3): ('square', 'black'), (1, 4): ('circle', 'black'), (1, 5): ('circle', 'black'), (1, 6): ('square', 'white'), (1, 7): ('circle', 'black'), (1, 8): ('square', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('square', 'white'), (2, 3): ('triangle', 'white'), (2, 4): ('square', 'white'), (2, 5): ('triangle', 'black'), (2, 6): ('circle', 'black'), (2, 7): ('triangle', 'black'), (2, 8): ('square', 'black'), (3, 0): ('circle', 'black'), (3, 1): ('circle', 'white'), (3, 2): ('circle', 'white'), (3, 3): ('circle', 'black'), (3, 4): ('circle', 'black'), (3, 5): ('square', 'white'), (3, 6): ('triangle', 'white'), (3, 7): ('triangle', 'black'), (3, 8): ('square', 'white'), (4, 0): ('circle', 'black'), (4, 1): ('square', 'white'), (4, 2): ('triangle', 'white'), (4, 3): ('square', 'black'), (4, 4): ('circle', 'white'), (4, 5): ('square', 'white'), (4, 6): ('triangle', 'white'), (4, 7): ('square', 'white'), (4, 8): ('square', 'white'), (5, 0): ('triangle', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('circle', 'black'), (5, 3): ('square', 'black'), (5, 4): ('circle', 'white'), (5, 5): ('triangle', 'black'), (5, 6): ('square', 'white'), (5, 7): ('triangle', 'black'), (5, 8): ('square', 'black')}, {(0, 0): ('circle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('square', 'black'), (0, 5): ('circle', 'black'), (0, 6): ('circle', 'black'), (0, 7): ('square', 'white'), (0, 8): ('circle', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('square', 'black'), (1, 2): ('square', 'black'), (1, 3): ('triangle', 'black'), (1, 4): ('square', 'white'), (1, 5): ('circle', 'white'), (1, 6): ('circle', 'black'), (1, 7): ('circle', 'black'), (1, 8): ('triangle', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('circle', 'white'), (2, 3): ('square', 'black'), (2, 4): ('square', 'black'), (2, 5): ('square', 'black'), (2, 6): ('triangle', 'black'), (2, 7): ('triangle', 'white'), (2, 8): ('triangle', 'black'), (3, 0): ('triangle', 'white'), (3, 1): ('triangle', 'white'), (3, 2): ('square', 'white'), (3, 3): ('circle', 'white'), (3, 4): ('triangle', 'white'), (3, 5): ('circle', 'white'), (3, 6): ('circle', 'white'), (3, 7): ('triangle', 'white'), (3, 8): ('circle', 'white'), (4, 0): ('circle', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('square', 'black'), (4, 3): ('triangle', 'black'), (4, 4): ('circle', 'white'), (4, 5): ('triangle', 'white'), (4, 6): ('circle', 'white'), (4, 7): ('circle', 'white'), (4, 8): ('square', 'black'), (5, 0): ('circle', 'black'), (5, 1): ('square', 'black'), (5, 2): ('square', 'white'), (5, 3): ('circle', 'black'), (5, 4): ('triangle', 'white'), (5, 5): ('circle', 'black'), (5, 6): ('square', 'white'), (5, 7): ('square', 'white'), (5, 8): ('triangle', 'black')}, {(0, 0): ('square', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'white'), (0, 3): ('triangle', 'white'), (0, 4): ('circle', 'black'), (0, 5): ('triangle', 'black'), (0, 6): ('triangle', 'white'), (0, 7): ('square', 'white'), (0, 8): ('square', 'black'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('circle', 'black'), (1, 5): ('triangle', 'white'), (1, 6): ('circle', 'black'), (1, 7): ('triangle', 'black'), (1, 8): ('circle', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('square', 'black'), (2, 2): ('square', 'black'), (2, 3): ('square', 'white'), (2, 4): ('triangle', 'white'), (2, 5): ('square', 'black'), (2, 6): ('circle', 'black'), (2, 7): ('circle', 'black'), (2, 8): ('triangle', 'white'), (3, 0): ('square', 'white'), (3, 1): ('circle', 'white'), (3, 2): ('square', 'white'), (3, 3): ('square', 'white'), (3, 4): ('circle', 'black'), (3, 5): ('triangle', 'black'), (3, 6): ('square', 'black'), (3, 7): ('square', 'white'), (3, 8): ('triangle', 'black'), (4, 0): ('circle', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('circle', 'white'), (4, 3): ('circle', 'white'), (4, 4): ('triangle', 'black'), (4, 5): ('square', 'white'), (4, 6): ('square', 'black'), (4, 7): ('triangle', 'white'), (4, 8): ('circle', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('triangle', 'black'), (5, 3): ('square', 'white'), (5, 4): ('square', 'white'), (5, 5): ('triangle', 'black'), (5, 6): ('circle', 'black'), (5, 7): ('triangle', 'white'), (5, 8): ('circle', 'black')}]","(6, 9, 5)"
+178.svg,"[{(0, 0): ('triangle', 'white'), (0, 1): ('square', 'white'), (0, 2): ('square', 'white'), (0, 3): ('square', 'white'), (0, 4): ('square', 'white'), (0, 5): ('square', 'black'), (0, 6): ('triangle', 'black'), (0, 7): ('square', 'black'), (0, 8): ('square', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'black'), (1, 3): ('square', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('triangle', 'white'), (1, 6): ('triangle', 'black'), (1, 7): ('circle', 'black'), (1, 8): ('square', 'black'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('square', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('circle', 'black'), (2, 5): ('square', 'black'), (2, 6): ('triangle', 'black'), (2, 7): ('square', 'black'), (2, 8): ('triangle', 'black'), (3, 0): ('square', 'black'), (3, 1): ('square', 'black'), (3, 2): ('circle', 'white'), (3, 3): ('triangle', 'black'), (3, 4): ('circle', 'black'), (3, 5): ('square', 'white'), (3, 6): ('square', 'white'), (3, 7): ('square', 'black'), (3, 8): ('square', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('triangle', 'black'), (4, 2): ('square', 'white'), (4, 3): ('circle', 'white'), (4, 4): ('circle', 'white'), (4, 5): ('triangle', 'white'), (4, 6): ('square', 'black'), (4, 7): ('square', 'white'), (4, 8): ('square', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('square', 'black'), (5, 2): ('circle', 'white'), (5, 3): ('circle', 'white'), (5, 4): ('square', 'white'), (5, 5): ('triangle', 'black'), (5, 6): ('square', 'white'), (5, 7): ('triangle', 'white'), (5, 8): ('triangle', 'black')}, {(0, 0): ('triangle', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('circle', 'white'), (0, 4): ('circle', 'white'), (0, 5): ('square', 'black'), (0, 6): ('circle', 'black'), (0, 7): ('circle', 'black'), (0, 8): ('circle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('square', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('triangle', 'black'), (1, 5): ('square', 'white'), (1, 6): ('square', 'white'), (1, 7): ('circle', 'black'), (1, 8): ('square', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('circle', 'white'), (2, 3): ('square', 'black'), (2, 4): ('triangle', 'white'), (2, 5): ('triangle', 'white'), (2, 6): ('square', 'black'), (2, 7): ('triangle', 'white'), (2, 8): ('triangle', 'white'), (3, 0): ('triangle', 'white'), (3, 1): ('square', 'black'), (3, 2): ('circle', 'white'), (3, 3): ('square', 'white'), (3, 4): ('circle', 'black'), (3, 5): ('circle', 'black'), (3, 6): ('square', 'white'), (3, 7): ('triangle', 'black'), (3, 8): ('square', 'white'), (4, 0): ('circle', 'black'), (4, 1): ('triangle', 'black'), (4, 2): ('square', 'white'), (4, 3): ('triangle', 'white'), (4, 4): ('circle', 'white'), (4, 5): ('triangle', 'white'), (4, 6): ('triangle', 'white'), (4, 7): ('circle', 'white'), (4, 8): ('square', 'white'), (5, 0): ('square', 'black'), (5, 1): ('square', 'black'), (5, 2): ('square', 'white'), (5, 3): ('triangle', 'white'), (5, 4): ('square', 'white'), (5, 5): ('square', 'black'), (5, 6): ('triangle', 'black'), (5, 7): ('square', 'white'), (5, 8): ('triangle', 'black')}, {(0, 0): ('triangle', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'white'), (0, 3): ('triangle', 'white'), (0, 4): ('square', 'white'), (0, 5): ('square', 'white'), (0, 6): ('square', 'white'), (0, 7): ('circle', 'black'), (0, 8): ('square', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('square', 'black'), (1, 5): ('triangle', 'black'), (1, 6): ('circle', 'black'), (1, 7): ('circle', 'white'), (1, 8): ('triangle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('square', 'black'), (2, 2): ('triangle', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('square', 'black'), (2, 6): ('triangle', 'white'), (2, 7): ('circle', 'white'), (2, 8): ('circle', 'white'), (3, 0): ('triangle', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('circle', 'white'), (3, 3): ('circle', 'black'), (3, 4): ('square', 'black'), (3, 5): ('circle', 'black'), (3, 6): ('triangle', 'white'), (3, 7): ('square', 'white'), (3, 8): ('square', 'black'), (4, 0): ('circle', 'white'), (4, 1): ('square', 'black'), (4, 2): ('square', 'black'), (4, 3): ('triangle', 'white'), (4, 4): ('square', 'white'), (4, 5): ('square', 'white'), (4, 6): ('triangle', 'white'), (4, 7): ('square', 'white'), (4, 8): ('square', 'black'), (5, 0): ('circle', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('triangle', 'black'), (5, 3): ('square', 'white'), (5, 4): ('circle', 'white'), (5, 5): ('square', 'black'), (5, 6): ('circle', 'black'), (5, 7): ('triangle', 'white'), (5, 8): ('circle', 'white')}, {(0, 0): ('circle', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('triangle', 'black'), (0, 6): ('triangle', 'white'), (0, 7): ('triangle', 'white'), (0, 8): ('triangle', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'black'), (1, 3): ('triangle', 'white'), (1, 4): ('triangle', 'black'), (1, 5): ('circle', 'white'), (1, 6): ('triangle', 'white'), (1, 7): ('square', 'black'), (1, 8): ('square', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('square', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('circle', 'white'), (2, 6): ('circle', 'white'), (2, 7): ('square', 'white'), (2, 8): ('square', 'white'), (3, 0): ('circle', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('circle', 'black'), (3, 3): ('square', 'white'), (3, 4): ('circle', 'black'), (3, 5): ('square', 'white'), (3, 6): ('triangle', 'white'), (3, 7): ('triangle', 'black'), (3, 8): ('square', 'black'), (4, 0): ('circle', 'white'), (4, 1): ('square', 'white'), (4, 2): ('triangle', 'black'), (4, 3): ('circle', 'black'), (4, 4): ('triangle', 'black'), (4, 5): ('square', 'white'), (4, 6): ('triangle', 'black'), (4, 7): ('square', 'black'), (4, 8): ('square', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('square', 'black'), (5, 2): ('triangle', 'black'), (5, 3): ('triangle', 'white'), (5, 4): ('square', 'white'), (5, 5): ('circle', 'black'), (5, 6): ('triangle', 'black'), (5, 7): ('square', 'white'), (5, 8): ('square', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('square', 'white'), (0, 4): ('square', 'black'), (0, 5): ('triangle', 'white'), (0, 6): ('triangle', 'white'), (0, 7): ('circle', 'white'), (0, 8): ('triangle', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('circle', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('triangle', 'black'), (1, 6): ('triangle', 'black'), (1, 7): ('circle', 'black'), (1, 8): ('circle', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('circle', 'black'), (2, 3): ('triangle', 'black'), (2, 4): ('circle', 'black'), (2, 5): ('triangle', 'white'), (2, 6): ('square', 'white'), (2, 7): ('triangle', 'white'), (2, 8): ('triangle', 'white'), (3, 0): ('circle', 'black'), (3, 1): ('square', 'black'), (3, 2): ('circle', 'black'), (3, 3): ('circle', 'black'), (3, 4): ('circle', 'black'), (3, 5): ('triangle', 'black'), (3, 6): ('square', 'white'), (3, 7): ('circle', 'black'), (3, 8): ('circle', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('triangle', 'black'), (4, 2): ('circle', 'black'), (4, 3): ('triangle', 'white'), (4, 4): ('triangle', 'white'), (4, 5): ('circle', 'white'), (4, 6): ('triangle', 'black'), (4, 7): ('circle', 'black'), (4, 8): ('square', 'white'), (5, 0): ('square', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('triangle', 'black'), (5, 3): ('square', 'black'), (5, 4): ('triangle', 'black'), (5, 5): ('circle', 'white'), (5, 6): ('triangle', 'white'), (5, 7): ('triangle', 'black'), (5, 8): ('circle', 'white')}]","(6, 9, 5)"
+179.svg,"[{(0, 0): ('square', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('square', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('square', 'white'), (0, 6): ('square', 'black'), (0, 7): ('circle', 'black'), (0, 8): ('triangle', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('square', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('circle', 'black'), (1, 6): ('square', 'black'), (1, 7): ('square', 'white'), (1, 8): ('square', 'white'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('square', 'black'), (2, 3): ('square', 'black'), (2, 4): ('triangle', 'white'), (2, 5): ('circle', 'black'), (2, 6): ('square', 'black'), (2, 7): ('triangle', 'black'), (2, 8): ('circle', 'white'), (3, 0): ('circle', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('triangle', 'black'), (3, 3): ('square', 'white'), (3, 4): ('circle', 'white'), (3, 5): ('circle', 'white'), (3, 6): ('triangle', 'black'), (3, 7): ('square', 'white'), (3, 8): ('square', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('square', 'black'), (4, 2): ('circle', 'white'), (4, 3): ('square', 'black'), (4, 4): ('square', 'black'), (4, 5): ('circle', 'black'), (4, 6): ('square', 'black'), (4, 7): ('square', 'white'), (4, 8): ('triangle', 'white'), (5, 0): ('circle', 'white'), (5, 1): ('triangle', 'white'), (5, 2): ('square', 'white'), (5, 3): ('square', 'white'), (5, 4): ('square', 'black'), (5, 5): ('triangle', 'white'), (5, 6): ('triangle', 'white'), (5, 7): ('triangle', 'black'), (5, 8): ('circle', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'white'), (0, 3): ('square', 'black'), (0, 4): ('square', 'black'), (0, 5): ('triangle', 'black'), (0, 6): ('triangle', 'white'), (0, 7): ('square', 'white'), (0, 8): ('triangle', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('square', 'white'), (1, 2): ('square', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('triangle', 'black'), (1, 5): ('square', 'white'), (1, 6): ('square', 'white'), (1, 7): ('triangle', 'black'), (1, 8): ('square', 'white'), (2, 0): ('square', 'black'), (2, 1): ('square', 'black'), (2, 2): ('triangle', 'black'), (2, 3): ('triangle', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('square', 'white'), (2, 6): ('square', 'white'), (2, 7): ('circle', 'black'), (2, 8): ('square', 'black'), (3, 0): ('square', 'white'), (3, 1): ('circle', 'black'), (3, 2): ('circle', 'white'), (3, 3): ('square', 'black'), (3, 4): ('square', 'black'), (3, 5): ('square', 'black'), (3, 6): ('triangle', 'black'), (3, 7): ('circle', 'black'), (3, 8): ('square', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('circle', 'black'), (4, 3): ('circle', 'black'), (4, 4): ('circle', 'white'), (4, 5): ('circle', 'white'), (4, 6): ('square', 'black'), (4, 7): ('triangle', 'black'), (4, 8): ('triangle', 'white'), (5, 0): ('square', 'white'), (5, 1): ('square', 'white'), (5, 2): ('circle', 'black'), (5, 3): ('circle', 'black'), (5, 4): ('triangle', 'black'), (5, 5): ('circle', 'white'), (5, 6): ('circle', 'black'), (5, 7): ('triangle', 'white'), (5, 8): ('square', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('triangle', 'white'), (0, 4): ('square', 'white'), (0, 5): ('triangle', 'white'), (0, 6): ('triangle', 'white'), (0, 7): ('triangle', 'black'), (0, 8): ('triangle', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('square', 'black'), (1, 2): ('circle', 'black'), (1, 3): ('square', 'white'), (1, 4): ('square', 'white'), (1, 5): ('square', 'white'), (1, 6): ('square', 'white'), (1, 7): ('triangle', 'white'), (1, 8): ('square', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('square', 'white'), (2, 4): ('circle', 'white'), (2, 5): ('square', 'white'), (2, 6): ('circle', 'black'), (2, 7): ('square', 'black'), (2, 8): ('circle', 'black'), (3, 0): ('triangle', 'white'), (3, 1): ('square', 'black'), (3, 2): ('triangle', 'black'), (3, 3): ('triangle', 'black'), (3, 4): ('square', 'black'), (3, 5): ('circle', 'white'), (3, 6): ('square', 'white'), (3, 7): ('triangle', 'white'), (3, 8): ('square', 'white'), (4, 0): ('square', 'black'), (4, 1): ('triangle', 'black'), (4, 2): ('triangle', 'white'), (4, 3): ('triangle', 'white'), (4, 4): ('circle', 'black'), (4, 5): ('circle', 'black'), (4, 6): ('triangle', 'black'), (4, 7): ('triangle', 'black'), (4, 8): ('circle', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('circle', 'black'), (5, 3): ('circle', 'black'), (5, 4): ('circle', 'black'), (5, 5): ('circle', 'white'), (5, 6): ('triangle', 'white'), (5, 7): ('triangle', 'white'), (5, 8): ('triangle', 'white')}, {(0, 0): ('square', 'black'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('square', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('circle', 'white'), (0, 6): ('square', 'white'), (0, 7): ('triangle', 'black'), (0, 8): ('triangle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('square', 'black'), (1, 2): ('circle', 'black'), (1, 3): ('triangle', 'white'), (1, 4): ('triangle', 'white'), (1, 5): ('square', 'black'), (1, 6): ('triangle', 'black'), (1, 7): ('triangle', 'black'), (1, 8): ('square', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('square', 'black'), (2, 6): ('triangle', 'white'), (2, 7): ('square', 'black'), (2, 8): ('triangle', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('circle', 'black'), (3, 3): ('circle', 'black'), (3, 4): ('circle', 'white'), (3, 5): ('square', 'white'), (3, 6): ('square', 'white'), (3, 7): ('triangle', 'white'), (3, 8): ('square', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('square', 'white'), (4, 2): ('triangle', 'white'), (4, 3): ('triangle', 'white'), (4, 4): ('circle', 'white'), (4, 5): ('square', 'white'), (4, 6): ('triangle', 'black'), (4, 7): ('circle', 'black'), (4, 8): ('square', 'white'), (5, 0): ('triangle', 'black'), (5, 1): ('triangle', 'white'), (5, 2): ('circle', 'white'), (5, 3): ('circle', 'white'), (5, 4): ('square', 'black'), (5, 5): ('circle', 'black'), (5, 6): ('square', 'white'), (5, 7): ('square', 'white'), (5, 8): ('square', 'white')}, {(0, 0): ('triangle', 'black'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('triangle', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('triangle', 'white'), (0, 6): ('square', 'white'), (0, 7): ('triangle', 'white'), (0, 8): ('circle', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('triangle', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('triangle', 'white'), (1, 5): ('triangle', 'black'), (1, 6): ('triangle', 'white'), (1, 7): ('triangle', 'black'), (1, 8): ('square', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('square', 'white'), (2, 3): ('square', 'black'), (2, 4): ('square', 'black'), (2, 5): ('triangle', 'white'), (2, 6): ('triangle', 'black'), (2, 7): ('circle', 'white'), (2, 8): ('circle', 'black'), (3, 0): ('circle', 'white'), (3, 1): ('square', 'black'), (3, 2): ('square', 'black'), (3, 3): ('circle', 'white'), (3, 4): ('circle', 'black'), (3, 5): ('triangle', 'black'), (3, 6): ('triangle', 'white'), (3, 7): ('triangle', 'black'), (3, 8): ('triangle', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('triangle', 'black'), (4, 2): ('square', 'black'), (4, 3): ('circle', 'white'), (4, 4): ('circle', 'white'), (4, 5): ('square', 'white'), (4, 6): ('triangle', 'white'), (4, 7): ('triangle', 'black'), (4, 8): ('triangle', 'white'), (5, 0): ('square', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('square', 'black'), (5, 3): ('square', 'white'), (5, 4): ('square', 'black'), (5, 5): ('square', 'black'), (5, 6): ('circle', 'black'), (5, 7): ('square', 'white'), (5, 8): ('square', 'black')}]","(6, 9, 5)"
+180.svg,"[{(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('triangle', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('triangle', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'white'), (3, 0): ('square', 'black'), (3, 1): ('triangle', 'black'), (3, 2): ('triangle', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('square', 'white'), (4, 2): ('triangle', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('square', 'white'), (5, 2): ('triangle', 'white'), (6, 0): ('triangle', 'black'), (6, 1): ('triangle', 'white'), (6, 2): ('square', 'white'), (7, 0): ('circle', 'black'), (7, 1): ('triangle', 'white'), (7, 2): ('square', 'white'), (8, 0): ('square', 'black'), (8, 1): ('triangle', 'white'), (8, 2): ('circle', 'black')}]","(9, 3, 1)"
+181.svg,"[{(0, 0): ('square', 'black'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('square', 'black'), (1, 2): ('square', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('square', 'white'), (2, 2): ('circle', 'black'), (3, 0): ('square', 'black'), (3, 1): ('square', 'white'), (3, 2): ('square', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('circle', 'white'), (5, 0): ('triangle', 'white'), (5, 1): ('triangle', 'white'), (5, 2): ('triangle', 'white'), (6, 0): ('square', 'black'), (6, 1): ('triangle', 'black'), (6, 2): ('square', 'white'), (7, 0): ('square', 'white'), (7, 1): ('circle', 'white'), (7, 2): ('circle', 'white'), (8, 0): ('square', 'black'), (8, 1): ('square', 'black'), (8, 2): ('square', 'black')}]","(9, 3, 1)"
+182.svg,"[{(0, 0): ('circle', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'white'), (3, 0): ('triangle', 'black'), (3, 1): ('square', 'white'), (3, 2): ('circle', 'white'), (4, 0): ('circle', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('square', 'white'), (5, 0): ('square', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('square', 'white'), (6, 0): ('square', 'black'), (6, 1): ('circle', 'black'), (6, 2): ('circle', 'white'), (7, 0): ('circle', 'black'), (7, 1): ('circle', 'black'), (7, 2): ('circle', 'black'), (8, 0): ('triangle', 'white'), (8, 1): ('circle', 'white'), (8, 2): ('triangle', 'black')}]","(9, 3, 1)"
+183.svg,"[{(0, 0): ('circle', 'white'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('square', 'white'), (1, 2): ('triangle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('square', 'black'), (3, 0): ('square', 'white'), (3, 1): ('circle', 'black'), (3, 2): ('triangle', 'black'), (4, 0): ('square', 'white'), (4, 1): ('square', 'white'), (4, 2): ('circle', 'white'), (5, 0): ('triangle', 'white'), (5, 1): ('square', 'black'), (5, 2): ('circle', 'black'), (6, 0): ('triangle', 'white'), (6, 1): ('triangle', 'white'), (6, 2): ('square', 'white'), (7, 0): ('square', 'black'), (7, 1): ('circle', 'black'), (7, 2): ('triangle', 'white'), (8, 0): ('triangle', 'black'), (8, 1): ('square', 'white'), (8, 2): ('circle', 'black')}]","(9, 3, 1)"
+184.svg,"[{(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('square', 'white'), (1, 0): ('square', 'white'), (1, 1): ('square', 'black'), (1, 2): ('circle', 'black'), (2, 0): ('square', 'black'), (2, 1): ('square', 'black'), (2, 2): ('triangle', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('square', 'black'), (3, 2): ('circle', 'black'), (4, 0): ('square', 'white'), (4, 1): ('square', 'black'), (4, 2): ('square', 'black'), (5, 0): ('circle', 'black'), (5, 1): ('square', 'white'), (5, 2): ('circle', 'black'), (6, 0): ('square', 'white'), (6, 1): ('square', 'black'), (6, 2): ('square', 'white'), (7, 0): ('circle', 'black'), (7, 1): ('triangle', 'black'), (7, 2): ('circle', 'black'), (8, 0): ('triangle', 'black'), (8, 1): ('square', 'white'), (8, 2): ('circle', 'white')}]","(9, 3, 1)"
+185.svg,"[{(0, 0): ('triangle', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('circle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('square', 'white'), (3, 0): ('circle', 'black'), (3, 1): ('square', 'white'), (3, 2): ('triangle', 'white'), (4, 0): ('square', 'black'), (4, 1): ('triangle', 'black'), (4, 2): ('triangle', 'black'), (5, 0): ('square', 'white'), (5, 1): ('square', 'white'), (5, 2): ('square', 'white'), (6, 0): ('circle', 'black'), (6, 1): ('circle', 'black'), (6, 2): ('circle', 'black'), (7, 0): ('circle', 'black'), (7, 1): ('square', 'black'), (7, 2): ('square', 'black'), (8, 0): ('square', 'black'), (8, 1): ('square', 'black'), (8, 2): ('triangle', 'black')}]","(9, 3, 1)"
+186.svg,"[{(0, 0): ('triangle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('square', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('square', 'black'), (1, 2): ('square', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'white'), (3, 0): ('triangle', 'black'), (3, 1): ('square', 'white'), (3, 2): ('triangle', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('circle', 'white'), (4, 2): ('circle', 'black'), (5, 0): ('triangle', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('triangle', 'black'), (6, 0): ('circle', 'white'), (6, 1): ('triangle', 'black'), (6, 2): ('triangle', 'black'), (7, 0): ('circle', 'black'), (7, 1): ('circle', 'white'), (7, 2): ('square', 'white'), (8, 0): ('triangle', 'white'), (8, 1): ('triangle', 'black'), (8, 2): ('square', 'black')}]","(9, 3, 1)"
+187.svg,"[{(0, 0): ('square', 'black'), (0, 1): ('square', 'black'), (0, 2): ('circle', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('square', 'black'), (1, 2): ('circle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('square', 'black'), (3, 0): ('circle', 'black'), (3, 1): ('square', 'white'), (3, 2): ('square', 'black'), (4, 0): ('triangle', 'white'), (4, 1): ('square', 'black'), (4, 2): ('triangle', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('square', 'black'), (6, 0): ('square', 'black'), (6, 1): ('circle', 'black'), (6, 2): ('square', 'black'), (7, 0): ('circle', 'white'), (7, 1): ('square', 'black'), (7, 2): ('triangle', 'white'), (8, 0): ('triangle', 'black'), (8, 1): ('square', 'black'), (8, 2): ('square', 'black')}]","(9, 3, 1)"
+188.svg,"[{(0, 0): ('triangle', 'white'), (0, 1): ('square', 'black'), (0, 2): ('circle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'white'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('circle', 'black'), (3, 0): ('triangle', 'white'), (3, 1): ('circle', 'white'), (3, 2): ('square', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('triangle', 'black'), (4, 2): ('square', 'white'), (5, 0): ('triangle', 'black'), (5, 1): ('triangle', 'black'), (5, 2): ('square', 'black'), (6, 0): ('circle', 'white'), (6, 1): ('triangle', 'white'), (6, 2): ('triangle', 'black'), (7, 0): ('circle', 'white'), (7, 1): ('circle', 'black'), (7, 2): ('triangle', 'black'), (8, 0): ('square', 'black'), (8, 1): ('square', 'black'), (8, 2): ('circle', 'black')}]","(9, 3, 1)"
+189.svg,"[{(0, 0): ('triangle', 'white'), (0, 1): ('square', 'white'), (0, 2): ('square', 'white'), (1, 0): ('square', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('triangle', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'white'), (3, 0): ('square', 'black'), (3, 1): ('circle', 'white'), (3, 2): ('triangle', 'white'), (4, 0): ('square', 'white'), (4, 1): ('square', 'black'), (4, 2): ('square', 'white'), (5, 0): ('square', 'black'), (5, 1): ('triangle', 'black'), (5, 2): ('circle', 'white'), (6, 0): ('square', 'black'), (6, 1): ('circle', 'white'), (6, 2): ('triangle', 'white'), (7, 0): ('triangle', 'white'), (7, 1): ('square', 'white'), (7, 2): ('circle', 'black'), (8, 0): ('circle', 'black'), (8, 1): ('square', 'white'), (8, 2): ('square', 'black')}]","(9, 3, 1)"
+190.svg,"[{(0, 0): ('triangle', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('square', 'white'), (1, 0): ('square', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('circle', 'black'), (2, 0): ('square', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('square', 'white'), (3, 0): ('triangle', 'white'), (3, 1): ('triangle', 'white'), (3, 2): ('triangle', 'white'), (4, 0): ('triangle', 'white'), (4, 1): ('triangle', 'black'), (4, 2): ('square', 'white'), (5, 0): ('square', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('triangle', 'black'), (6, 0): ('circle', 'black'), (6, 1): ('triangle', 'white'), (6, 2): ('circle', 'black'), (7, 0): ('circle', 'white'), (7, 1): ('triangle', 'white'), (7, 2): ('square', 'white'), (8, 0): ('circle', 'white'), (8, 1): ('square', 'white'), (8, 2): ('circle', 'white')}, {(0, 0): ('square', 'black'), (0, 1): ('square', 'black'), (0, 2): ('circle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('square', 'white'), (3, 0): ('square', 'white'), (3, 1): ('circle', 'black'), (3, 2): ('square', 'black'), (4, 0): ('circle', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('square', 'black'), (5, 0): ('triangle', 'white'), (5, 1): ('triangle', 'black'), (5, 2): ('square', 'white'), (6, 0): ('square', 'black'), (6, 1): ('circle', 'white'), (6, 2): ('square', 'black'), (7, 0): ('triangle', 'black'), (7, 1): ('triangle', 'white'), (7, 2): ('triangle', 'black'), (8, 0): ('square', 'black'), (8, 1): ('square', 'black'), (8, 2): ('square', 'black')}, {(0, 0): ('square', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'black'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'white'), (3, 0): ('triangle', 'white'), (3, 1): ('circle', 'black'), (3, 2): ('circle', 'black'), (4, 0): ('triangle', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('triangle', 'white'), (5, 0): ('circle', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('square', 'black'), (6, 0): ('square', 'black'), (6, 1): ('triangle', 'black'), (6, 2): ('triangle', 'white'), (7, 0): ('triangle', 'white'), (7, 1): ('triangle', 'black'), (7, 2): ('square', 'white'), (8, 0): ('circle', 'white'), (8, 1): ('circle', 'white'), (8, 2): ('circle', 'black')}]","(9, 3, 3)"
+191.svg,"[{(0, 0): ('square', 'black'), (0, 1): ('square', 'white'), (0, 2): ('square', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('circle', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('circle', 'white'), (3, 0): ('square', 'black'), (3, 1): ('square', 'black'), (3, 2): ('triangle', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('square', 'white'), (4, 2): ('circle', 'black'), (5, 0): ('square', 'white'), (5, 1): ('square', 'black'), (5, 2): ('triangle', 'black'), (6, 0): ('circle', 'black'), (6, 1): ('square', 'black'), (6, 2): ('circle', 'white'), (7, 0): ('circle', 'white'), (7, 1): ('triangle', 'black'), (7, 2): ('square', 'white'), (8, 0): ('circle', 'black'), (8, 1): ('triangle', 'white'), (8, 2): ('circle', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('square', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('triangle', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('square', 'black'), (3, 0): ('square', 'white'), (3, 1): ('triangle', 'white'), (3, 2): ('triangle', 'black'), (4, 0): ('circle', 'white'), (4, 1): ('square', 'black'), (4, 2): ('circle', 'white'), (5, 0): ('circle', 'white'), (5, 1): ('triangle', 'black'), (5, 2): ('square', 'white'), (6, 0): ('circle', 'black'), (6, 1): ('circle', 'black'), (6, 2): ('square', 'black'), (7, 0): ('triangle', 'white'), (7, 1): ('circle', 'black'), (7, 2): ('circle', 'black'), (8, 0): ('triangle', 'black'), (8, 1): ('circle', 'white'), (8, 2): ('square', 'white')}, {(0, 0): ('circle', 'black'), (0, 1): ('square', 'black'), (0, 2): ('square', 'black'), (1, 0): ('square', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('triangle', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('square', 'black'), (3, 0): ('circle', 'black'), (3, 1): ('square', 'white'), (3, 2): ('circle', 'black'), (4, 0): ('triangle', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('triangle', 'white'), (5, 0): ('square', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('circle', 'black'), (6, 0): ('triangle', 'black'), (6, 1): ('square', 'white'), (6, 2): ('triangle', 'black'), (7, 0): ('triangle', 'white'), (7, 1): ('triangle', 'white'), (7, 2): ('square', 'black'), (8, 0): ('square', 'white'), (8, 1): ('circle', 'white'), (8, 2): ('square', 'black')}]","(9, 3, 3)"
+192.svg,"[{(0, 0): ('circle', 'white'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('square', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('square', 'white'), (3, 0): ('square', 'white'), (3, 1): ('circle', 'black'), (3, 2): ('square', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('triangle', 'black'), (4, 2): ('square', 'white'), (5, 0): ('square', 'black'), (5, 1): ('triangle', 'black'), (5, 2): ('triangle', 'black'), (6, 0): ('triangle', 'black'), (6, 1): ('triangle', 'white'), (6, 2): ('square', 'black'), (7, 0): ('triangle', 'white'), (7, 1): ('triangle', 'white'), (7, 2): ('circle', 'black'), (8, 0): ('triangle', 'white'), (8, 1): ('circle', 'black'), (8, 2): ('square', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('circle', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('circle', 'black'), (2, 0): ('square', 'white'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'black'), (3, 0): ('circle', 'white'), (3, 1): ('square', 'black'), (3, 2): ('triangle', 'white'), (4, 0): ('square', 'white'), (4, 1): ('triangle', 'black'), (4, 2): ('circle', 'black'), (5, 0): ('triangle', 'white'), (5, 1): ('triangle', 'black'), (5, 2): ('triangle', 'white'), (6, 0): ('circle', 'black'), (6, 1): ('triangle', 'white'), (6, 2): ('triangle', 'black'), (7, 0): ('circle', 'white'), (7, 1): ('square', 'black'), (7, 2): ('triangle', 'black'), (8, 0): ('square', 'black'), (8, 1): ('square', 'black'), (8, 2): ('triangle', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('square', 'white'), (3, 0): ('circle', 'white'), (3, 1): ('triangle', 'white'), (3, 2): ('circle', 'white'), (4, 0): ('circle', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('triangle', 'black'), (5, 0): ('circle', 'black'), (5, 1): ('square', 'black'), (5, 2): ('circle', 'white'), (6, 0): ('circle', 'white'), (6, 1): ('triangle', 'black'), (6, 2): ('square', 'white'), (7, 0): ('circle', 'white'), (7, 1): ('circle', 'white'), (7, 2): ('circle', 'white'), (8, 0): ('circle', 'black'), (8, 1): ('triangle', 'black'), (8, 2): ('circle', 'black')}]","(9, 3, 3)"
+193.svg,"[{(0, 0): ('triangle', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('triangle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('square', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'black'), (3, 0): ('square', 'white'), (3, 1): ('square', 'white'), (3, 2): ('square', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('triangle', 'white'), (4, 2): ('triangle', 'black'), (5, 0): ('square', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('triangle', 'white'), (6, 0): ('circle', 'white'), (6, 1): ('square', 'white'), (6, 2): ('circle', 'white'), (7, 0): ('circle', 'black'), (7, 1): ('triangle', 'black'), (7, 2): ('circle', 'black'), (8, 0): ('triangle', 'black'), (8, 1): ('square', 'black'), (8, 2): ('triangle', 'white')}, {(0, 0): ('circle', 'black'), (0, 1): ('square', 'white'), (0, 2): ('triangle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('square', 'black'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'white'), (3, 0): ('triangle', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('circle', 'white'), (4, 0): ('square', 'white'), (4, 1): ('triangle', 'black'), (4, 2): ('square', 'white'), (5, 0): ('triangle', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('circle', 'white'), (6, 0): ('square', 'black'), (6, 1): ('circle', 'black'), (6, 2): ('triangle', 'black'), (7, 0): ('circle', 'white'), (7, 1): ('square', 'white'), (7, 2): ('square', 'white'), (8, 0): ('triangle', 'white'), (8, 1): ('square', 'black'), (8, 2): ('triangle', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('square', 'black'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('square', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('square', 'black'), (2, 2): ('square', 'black'), (3, 0): ('square', 'white'), (3, 1): ('square', 'white'), (3, 2): ('square', 'black'), (4, 0): ('square', 'white'), (4, 1): ('circle', 'black'), (4, 2): ('triangle', 'white'), (5, 0): ('circle', 'white'), (5, 1): ('square', 'black'), (5, 2): ('square', 'black'), (6, 0): ('triangle', 'black'), (6, 1): ('triangle', 'white'), (6, 2): ('square', 'white'), (7, 0): ('circle', 'black'), (7, 1): ('circle', 'white'), (7, 2): ('square', 'white'), (8, 0): ('circle', 'white'), (8, 1): ('circle', 'black'), (8, 2): ('triangle', 'white')}]","(9, 3, 3)"
+194.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('triangle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('triangle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'white'), (3, 0): ('square', 'white'), (3, 1): ('square', 'black'), (3, 2): ('triangle', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('triangle', 'black'), (4, 2): ('square', 'black'), (5, 0): ('triangle', 'white'), (5, 1): ('triangle', 'white'), (5, 2): ('triangle', 'white'), (6, 0): ('triangle', 'white'), (6, 1): ('square', 'black'), (6, 2): ('square', 'white'), (7, 0): ('triangle', 'black'), (7, 1): ('square', 'white'), (7, 2): ('circle', 'white'), (8, 0): ('circle', 'black'), (8, 1): ('triangle', 'black'), (8, 2): ('square', 'white')}, {(0, 0): ('square', 'black'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'black'), (3, 0): ('square', 'black'), (3, 1): ('square', 'white'), (3, 2): ('triangle', 'white'), (4, 0): ('triangle', 'white'), (4, 1): ('triangle', 'black'), (4, 2): ('square', 'black'), (5, 0): ('triangle', 'black'), (5, 1): ('triangle', 'black'), (5, 2): ('triangle', 'black'), (6, 0): ('triangle', 'black'), (6, 1): ('circle', 'black'), (6, 2): ('triangle', 'white'), (7, 0): ('circle', 'black'), (7, 1): ('circle', 'black'), (7, 2): ('triangle', 'black'), (8, 0): ('square', 'white'), (8, 1): ('triangle', 'black'), (8, 2): ('square', 'black')}, {(0, 0): ('square', 'white'), (0, 1): ('square', 'white'), (0, 2): ('square', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'white'), (3, 0): ('circle', 'black'), (3, 1): ('square', 'white'), (3, 2): ('square', 'black'), (4, 0): ('circle', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('triangle', 'white'), (5, 0): ('square', 'white'), (5, 1): ('triangle', 'white'), (5, 2): ('triangle', 'black'), (6, 0): ('square', 'black'), (6, 1): ('circle', 'black'), (6, 2): ('circle', 'white'), (7, 0): ('circle', 'black'), (7, 1): ('circle', 'white'), (7, 2): ('triangle', 'white'), (8, 0): ('triangle', 'white'), (8, 1): ('square', 'black'), (8, 2): ('circle', 'white')}]","(9, 3, 3)"
+195.svg,"[{(0, 0): ('triangle', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'white'), (1, 0): ('triangle', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('square', 'white'), (2, 2): ('circle', 'black'), (3, 0): ('circle', 'white'), (3, 1): ('triangle', 'white'), (3, 2): ('square', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('square', 'black'), (4, 2): ('triangle', 'black'), (5, 0): ('triangle', 'white'), (5, 1): ('square', 'white'), (5, 2): ('circle', 'black'), (6, 0): ('square', 'black'), (6, 1): ('square', 'white'), (6, 2): ('circle', 'white'), (7, 0): ('triangle', 'white'), (7, 1): ('circle', 'black'), (7, 2): ('circle', 'white'), (8, 0): ('circle', 'white'), (8, 1): ('circle', 'black'), (8, 2): ('triangle', 'black')}, {(0, 0): ('square', 'black'), (0, 1): ('square', 'white'), (0, 2): ('triangle', 'white'), (1, 0): ('triangle', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('circle', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('square', 'white'), (3, 2): ('circle', 'white'), (4, 0): ('square', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('triangle', 'white'), (5, 0): ('square', 'black'), (5, 1): ('square', 'black'), (5, 2): ('square', 'black'), (6, 0): ('square', 'black'), (6, 1): ('circle', 'black'), (6, 2): ('triangle', 'black'), (7, 0): ('circle', 'white'), (7, 1): ('triangle', 'white'), (7, 2): ('triangle', 'black'), (8, 0): ('circle', 'white'), (8, 1): ('triangle', 'white'), (8, 2): ('circle', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('triangle', 'black'), (2, 0): ('square', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('square', 'white'), (3, 0): ('triangle', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('square', 'black'), (4, 0): ('square', 'white'), (4, 1): ('triangle', 'black'), (4, 2): ('circle', 'black'), (5, 0): ('square', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('square', 'white'), (6, 0): ('triangle', 'white'), (6, 1): ('circle', 'black'), (6, 2): ('circle', 'white'), (7, 0): ('circle', 'white'), (7, 1): ('triangle', 'black'), (7, 2): ('square', 'black'), (8, 0): ('triangle', 'white'), (8, 1): ('circle', 'black'), (8, 2): ('circle', 'black')}]","(9, 3, 3)"
+196.svg,"[{(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('circle', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('square', 'white'), (2, 0): ('square', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('square', 'white'), (3, 0): ('circle', 'white'), (3, 1): ('square', 'white'), (3, 2): ('triangle', 'black'), (4, 0): ('square', 'black'), (4, 1): ('circle', 'white'), (4, 2): ('triangle', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('square', 'white'), (5, 2): ('circle', 'black'), (6, 0): ('square', 'white'), (6, 1): ('square', 'white'), (6, 2): ('triangle', 'white'), (7, 0): ('square', 'black'), (7, 1): ('square', 'white'), (7, 2): ('triangle', 'black'), (8, 0): ('triangle', 'black'), (8, 1): ('triangle', 'white'), (8, 2): ('square', 'black')}, {(0, 0): ('square', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('triangle', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('square', 'white'), (1, 2): ('square', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('triangle', 'black'), (3, 2): ('triangle', 'white'), (4, 0): ('square', 'white'), (4, 1): ('circle', 'black'), (4, 2): ('circle', 'black'), (5, 0): ('triangle', 'white'), (5, 1): ('triangle', 'black'), (5, 2): ('triangle', 'black'), (6, 0): ('circle', 'black'), (6, 1): ('triangle', 'black'), (6, 2): ('triangle', 'black'), (7, 0): ('circle', 'white'), (7, 1): ('square', 'white'), (7, 2): ('square', 'white'), (8, 0): ('circle', 'white'), (8, 1): ('circle', 'black'), (8, 2): ('triangle', 'black')}, {(0, 0): ('triangle', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('triangle', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('triangle', 'white'), (3, 0): ('square', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('circle', 'white'), (4, 0): ('square', 'black'), (4, 1): ('square', 'white'), (4, 2): ('triangle', 'white'), (5, 0): ('square', 'white'), (5, 1): ('triangle', 'white'), (5, 2): ('circle', 'white'), (6, 0): ('triangle', 'white'), (6, 1): ('triangle', 'white'), (6, 2): ('circle', 'white'), (7, 0): ('square', 'white'), (7, 1): ('triangle', 'white'), (7, 2): ('square', 'white'), (8, 0): ('triangle', 'black'), (8, 1): ('square', 'white'), (8, 2): ('triangle', 'white')}]","(9, 3, 3)"
+197.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('square', 'white'), (0, 2): ('square', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('triangle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('circle', 'white'), (3, 0): ('triangle', 'white'), (3, 1): ('square', 'black'), (3, 2): ('triangle', 'black'), (4, 0): ('circle', 'white'), (4, 1): ('square', 'black'), (4, 2): ('circle', 'black'), (5, 0): ('square', 'white'), (5, 1): ('square', 'black'), (5, 2): ('square', 'white'), (6, 0): ('circle', 'black'), (6, 1): ('circle', 'black'), (6, 2): ('circle', 'white'), (7, 0): ('circle', 'black'), (7, 1): ('triangle', 'black'), (7, 2): ('triangle', 'white'), (8, 0): ('square', 'white'), (8, 1): ('triangle', 'white'), (8, 2): ('triangle', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'black'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('square', 'white'), (3, 0): ('circle', 'black'), (3, 1): ('triangle', 'black'), (3, 2): ('triangle', 'white'), (4, 0): ('circle', 'white'), (4, 1): ('square', 'black'), (4, 2): ('triangle', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('square', 'white'), (6, 0): ('triangle', 'white'), (6, 1): ('square', 'white'), (6, 2): ('triangle', 'white'), (7, 0): ('circle', 'white'), (7, 1): ('triangle', 'white'), (7, 2): ('circle', 'white'), (8, 0): ('triangle', 'white'), (8, 1): ('triangle', 'white'), (8, 2): ('triangle', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('square', 'black'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('square', 'white'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('circle', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('circle', 'white'), (3, 2): ('circle', 'white'), (4, 0): ('circle', 'white'), (4, 1): ('square', 'black'), (4, 2): ('square', 'black'), (5, 0): ('circle', 'white'), (5, 1): ('square', 'black'), (5, 2): ('circle', 'white'), (6, 0): ('square', 'white'), (6, 1): ('circle', 'black'), (6, 2): ('triangle', 'black'), (7, 0): ('triangle', 'white'), (7, 1): ('triangle', 'black'), (7, 2): ('square', 'black'), (8, 0): ('triangle', 'black'), (8, 1): ('square', 'black'), (8, 2): ('square', 'black')}]","(9, 3, 3)"
+198.svg,"[{(0, 0): ('circle', 'black'), (0, 1): ('square', 'black'), (0, 2): ('circle', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('square', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('square', 'black'), (2, 2): ('triangle', 'black'), (3, 0): ('circle', 'black'), (3, 1): ('square', 'white'), (3, 2): ('circle', 'white'), (4, 0): ('triangle', 'white'), (4, 1): ('square', 'white'), (4, 2): ('triangle', 'white'), (5, 0): ('triangle', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('triangle', 'white'), (6, 0): ('triangle', 'black'), (6, 1): ('circle', 'black'), (6, 2): ('triangle', 'white'), (7, 0): ('square', 'white'), (7, 1): ('triangle', 'white'), (7, 2): ('triangle', 'black'), (8, 0): ('circle', 'black'), (8, 1): ('circle', 'white'), (8, 2): ('circle', 'black')}, {(0, 0): ('circle', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('square', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('square', 'white'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('square', 'white'), (3, 0): ('triangle', 'white'), (3, 1): ('circle', 'black'), (3, 2): ('square', 'white'), (4, 0): ('circle', 'black'), (4, 1): ('circle', 'white'), (4, 2): ('square', 'white'), (5, 0): ('triangle', 'black'), (5, 1): ('triangle', 'white'), (5, 2): ('circle', 'white'), (6, 0): ('triangle', 'black'), (6, 1): ('square', 'white'), (6, 2): ('square', 'white'), (7, 0): ('circle', 'white'), (7, 1): ('circle', 'black'), (7, 2): ('triangle', 'black'), (8, 0): ('triangle', 'black'), (8, 1): ('circle', 'white'), (8, 2): ('circle', 'white')}, {(0, 0): ('square', 'black'), (0, 1): ('square', 'black'), (0, 2): ('square', 'white'), (1, 0): ('square', 'white'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'black'), (2, 0): ('square', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('circle', 'white'), (3, 0): ('square', 'black'), (3, 1): ('triangle', 'black'), (3, 2): ('circle', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('triangle', 'white'), (4, 2): ('triangle', 'black'), (5, 0): ('circle', 'black'), (5, 1): ('triangle', 'black'), (5, 2): ('circle', 'black'), (6, 0): ('square', 'black'), (6, 1): ('triangle', 'black'), (6, 2): ('square', 'black'), (7, 0): ('square', 'white'), (7, 1): ('triangle', 'white'), (7, 2): ('square', 'black'), (8, 0): ('triangle', 'black'), (8, 1): ('square', 'black'), (8, 2): ('triangle', 'white')}]","(9, 3, 3)"
+199.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('circle', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('square', 'white'), (1, 2): ('square', 'black'), (2, 0): ('square', 'black'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'white'), (3, 0): ('square', 'black'), (3, 1): ('triangle', 'black'), (3, 2): ('circle', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('circle', 'black'), (5, 0): ('triangle', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('square', 'white'), (6, 0): ('circle', 'white'), (6, 1): ('circle', 'black'), (6, 2): ('circle', 'white'), (7, 0): ('triangle', 'white'), (7, 1): ('square', 'white'), (7, 2): ('circle', 'white'), (8, 0): ('circle', 'white'), (8, 1): ('circle', 'black'), (8, 2): ('square', 'black')}, {(0, 0): ('square', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('triangle', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'white'), (3, 0): ('square', 'white'), (3, 1): ('triangle', 'black'), (3, 2): ('square', 'white'), (4, 0): ('circle', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('square', 'black'), (5, 0): ('circle', 'white'), (5, 1): ('square', 'black'), (5, 2): ('circle', 'white'), (6, 0): ('circle', 'black'), (6, 1): ('square', 'white'), (6, 2): ('triangle', 'white'), (7, 0): ('triangle', 'white'), (7, 1): ('square', 'white'), (7, 2): ('triangle', 'black'), (8, 0): ('triangle', 'black'), (8, 1): ('circle', 'black'), (8, 2): ('circle', 'white')}, {(0, 0): ('triangle', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('circle', 'white'), (3, 0): ('circle', 'black'), (3, 1): ('square', 'white'), (3, 2): ('triangle', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('triangle', 'white'), (4, 2): ('square', 'white'), (5, 0): ('circle', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('circle', 'white'), (6, 0): ('circle', 'black'), (6, 1): ('square', 'black'), (6, 2): ('square', 'white'), (7, 0): ('circle', 'black'), (7, 1): ('square', 'black'), (7, 2): ('circle', 'white'), (8, 0): ('circle', 'white'), (8, 1): ('square', 'white'), (8, 2): ('circle', 'white')}]","(9, 3, 3)"
+200.svg,"[{(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('circle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('triangle', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('square', 'white'), (2, 2): ('square', 'white'), (3, 0): ('circle', 'black'), (3, 1): ('triangle', 'black'), (3, 2): ('square', 'black'), (4, 0): ('square', 'white'), (4, 1): ('triangle', 'black'), (4, 2): ('circle', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('circle', 'black'), (6, 0): ('circle', 'black'), (6, 1): ('square', 'black'), (6, 2): ('square', 'black'), (7, 0): ('circle', 'white'), (7, 1): ('circle', 'white'), (7, 2): ('square', 'black'), (8, 0): ('triangle', 'white'), (8, 1): ('triangle', 'black'), (8, 2): ('circle', 'black')}, {(0, 0): ('square', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('triangle', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('circle', 'black'), (2, 0): ('square', 'black'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'white'), (3, 0): ('square', 'black'), (3, 1): ('square', 'black'), (3, 2): ('square', 'black'), (4, 0): ('square', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('triangle', 'white'), (5, 0): ('square', 'white'), (5, 1): ('triangle', 'white'), (5, 2): ('triangle', 'black'), (6, 0): ('triangle', 'black'), (6, 1): ('square', 'white'), (6, 2): ('square', 'white'), (7, 0): ('circle', 'white'), (7, 1): ('circle', 'black'), (7, 2): ('square', 'black'), (8, 0): ('circle', 'black'), (8, 1): ('circle', 'black'), (8, 2): ('circle', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('square', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('square', 'black'), (3, 0): ('square', 'white'), (3, 1): ('circle', 'white'), (3, 2): ('circle', 'black'), (4, 0): ('square', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('square', 'black'), (5, 0): ('triangle', 'black'), (5, 1): ('square', 'black'), (5, 2): ('square', 'black'), (6, 0): ('triangle', 'white'), (6, 1): ('triangle', 'white'), (6, 2): ('circle', 'white'), (7, 0): ('square', 'white'), (7, 1): ('triangle', 'black'), (7, 2): ('triangle', 'black'), (8, 0): ('circle', 'white'), (8, 1): ('triangle', 'black'), (8, 2): ('triangle', 'black')}, {(0, 0): ('square', 'black'), (0, 1): ('square', 'black'), (0, 2): ('circle', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'white'), (2, 0): ('square', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('triangle', 'white'), (3, 0): ('triangle', 'white'), (3, 1): ('circle', 'black'), (3, 2): ('circle', 'black'), (4, 0): ('circle', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('square', 'black'), (5, 0): ('triangle', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('triangle', 'white'), (6, 0): ('triangle', 'black'), (6, 1): ('square', 'white'), (6, 2): ('square', 'white'), (7, 0): ('square', 'black'), (7, 1): ('square', 'white'), (7, 2): ('circle', 'white'), (8, 0): ('square', 'black'), (8, 1): ('triangle', 'white'), (8, 2): ('triangle', 'black')}, {(0, 0): ('square', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('square', 'black'), (2, 0): ('square', 'black'), (2, 1): ('square', 'black'), (2, 2): ('square', 'white'), (3, 0): ('square', 'black'), (3, 1): ('square', 'black'), (3, 2): ('triangle', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('triangle', 'white'), (4, 2): ('circle', 'black'), (5, 0): ('square', 'black'), (5, 1): ('square', 'black'), (5, 2): ('circle', 'white'), (6, 0): ('triangle', 'white'), (6, 1): ('square', 'white'), (6, 2): ('triangle', 'white'), (7, 0): ('square', 'black'), (7, 1): ('triangle', 'white'), (7, 2): ('square', 'white'), (8, 0): ('circle', 'black'), (8, 1): ('circle', 'white'), (8, 2): ('triangle', 'black')}]","(9, 3, 5)"
+201.svg,"[{(0, 0): ('circle', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('square', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'white'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'black'), (3, 0): ('square', 'white'), (3, 1): ('triangle', 'black'), (3, 2): ('triangle', 'white'), (4, 0): ('circle', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('triangle', 'white'), (5, 0): ('square', 'white'), (5, 1): ('square', 'white'), (5, 2): ('triangle', 'black'), (6, 0): ('square', 'white'), (6, 1): ('triangle', 'black'), (6, 2): ('square', 'white'), (7, 0): ('circle', 'white'), (7, 1): ('circle', 'black'), (7, 2): ('square', 'white'), (8, 0): ('circle', 'black'), (8, 1): ('triangle', 'black'), (8, 2): ('circle', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('square', 'white'), (1, 2): ('square', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('square', 'white'), (3, 0): ('circle', 'white'), (3, 1): ('circle', 'black'), (3, 2): ('triangle', 'black'), (4, 0): ('square', 'white'), (4, 1): ('circle', 'black'), (4, 2): ('circle', 'white'), (5, 0): ('square', 'black'), (5, 1): ('triangle', 'white'), (5, 2): ('triangle', 'white'), (6, 0): ('square', 'white'), (6, 1): ('circle', 'white'), (6, 2): ('square', 'black'), (7, 0): ('circle', 'white'), (7, 1): ('triangle', 'white'), (7, 2): ('triangle', 'black'), (8, 0): ('square', 'black'), (8, 1): ('square', 'white'), (8, 2): ('triangle', 'black')}, {(0, 0): ('square', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('circle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('square', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('circle', 'white'), (3, 2): ('circle', 'black'), (4, 0): ('triangle', 'white'), (4, 1): ('circle', 'black'), (4, 2): ('square', 'black'), (5, 0): ('triangle', 'black'), (5, 1): ('square', 'white'), (5, 2): ('triangle', 'white'), (6, 0): ('triangle', 'black'), (6, 1): ('circle', 'white'), (6, 2): ('triangle', 'white'), (7, 0): ('circle', 'white'), (7, 1): ('square', 'white'), (7, 2): ('triangle', 'black'), (8, 0): ('circle', 'white'), (8, 1): ('triangle', 'white'), (8, 2): ('circle', 'black')}, {(0, 0): ('square', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'black'), (3, 0): ('circle', 'white'), (3, 1): ('square', 'black'), (3, 2): ('square', 'white'), (4, 0): ('triangle', 'white'), (4, 1): ('circle', 'black'), (4, 2): ('triangle', 'white'), (5, 0): ('square', 'black'), (5, 1): ('square', 'white'), (5, 2): ('circle', 'black'), (6, 0): ('circle', 'black'), (6, 1): ('circle', 'black'), (6, 2): ('circle', 'black'), (7, 0): ('square', 'black'), (7, 1): ('square', 'black'), (7, 2): ('square', 'white'), (8, 0): ('triangle', 'black'), (8, 1): ('triangle', 'white'), (8, 2): ('square', 'white')}, {(0, 0): ('triangle', 'black'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'white'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('circle', 'black'), (3, 0): ('square', 'white'), (3, 1): ('square', 'white'), (3, 2): ('triangle', 'white'), (4, 0): ('triangle', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('triangle', 'white'), (5, 0): ('triangle', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('triangle', 'white'), (6, 0): ('triangle', 'white'), (6, 1): ('circle', 'black'), (6, 2): ('square', 'white'), (7, 0): ('square', 'black'), (7, 1): ('triangle', 'white'), (7, 2): ('triangle', 'black'), (8, 0): ('square', 'black'), (8, 1): ('triangle', 'black'), (8, 2): ('circle', 'white')}]","(9, 3, 5)"
+202.svg,"[{(0, 0): ('circle', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('square', 'white'), (1, 2): ('triangle', 'white'), (2, 0): ('square', 'white'), (2, 1): ('square', 'white'), (2, 2): ('square', 'white'), (3, 0): ('triangle', 'black'), (3, 1): ('triangle', 'black'), (3, 2): ('circle', 'white'), (4, 0): ('circle', 'black'), (4, 1): ('triangle', 'black'), (4, 2): ('square', 'black'), (5, 0): ('circle', 'black'), (5, 1): ('square', 'white'), (5, 2): ('triangle', 'white'), (6, 0): ('circle', 'black'), (6, 1): ('square', 'black'), (6, 2): ('circle', 'white'), (7, 0): ('square', 'black'), (7, 1): ('circle', 'black'), (7, 2): ('triangle', 'white'), (8, 0): ('circle', 'white'), (8, 1): ('circle', 'white'), (8, 2): ('triangle', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('triangle', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('square', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('circle', 'black'), (3, 0): ('triangle', 'white'), (3, 1): ('circle', 'black'), (3, 2): ('triangle', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('square', 'black'), (4, 2): ('circle', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('circle', 'black'), (6, 0): ('square', 'black'), (6, 1): ('triangle', 'black'), (6, 2): ('triangle', 'white'), (7, 0): ('triangle', 'black'), (7, 1): ('circle', 'black'), (7, 2): ('circle', 'black'), (8, 0): ('square', 'white'), (8, 1): ('triangle', 'white'), (8, 2): ('square', 'black')}, {(0, 0): ('triangle', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('triangle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('square', 'white'), (3, 0): ('triangle', 'black'), (3, 1): ('triangle', 'black'), (3, 2): ('square', 'white'), (4, 0): ('square', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('square', 'black'), (5, 0): ('square', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('circle', 'black'), (6, 0): ('triangle', 'black'), (6, 1): ('triangle', 'black'), (6, 2): ('circle', 'white'), (7, 0): ('square', 'black'), (7, 1): ('circle', 'white'), (7, 2): ('circle', 'white'), (8, 0): ('circle', 'black'), (8, 1): ('square', 'white'), (8, 2): ('triangle', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('square', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('square', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'black'), (3, 0): ('square', 'white'), (3, 1): ('circle', 'black'), (3, 2): ('circle', 'white'), (4, 0): ('square', 'black'), (4, 1): ('square', 'white'), (4, 2): ('square', 'white'), (5, 0): ('circle', 'white'), (5, 1): ('square', 'black'), (5, 2): ('square', 'white'), (6, 0): ('square', 'black'), (6, 1): ('circle', 'black'), (6, 2): ('triangle', 'black'), (7, 0): ('circle', 'white'), (7, 1): ('square', 'white'), (7, 2): ('square', 'black'), (8, 0): ('square', 'white'), (8, 1): ('circle', 'white'), (8, 2): ('triangle', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('circle', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('square', 'black'), (1, 2): ('circle', 'black'), (2, 0): ('square', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('circle', 'black'), (3, 0): ('circle', 'white'), (3, 1): ('circle', 'black'), (3, 2): ('circle', 'white'), (4, 0): ('square', 'black'), (4, 1): ('triangle', 'black'), (4, 2): ('triangle', 'white'), (5, 0): ('square', 'white'), (5, 1): ('square', 'black'), (5, 2): ('triangle', 'black'), (6, 0): ('triangle', 'white'), (6, 1): ('triangle', 'white'), (6, 2): ('triangle', 'black'), (7, 0): ('circle', 'black'), (7, 1): ('square', 'white'), (7, 2): ('square', 'black'), (8, 0): ('circle', 'black'), (8, 1): ('circle', 'white'), (8, 2): ('circle', 'black')}]","(9, 3, 5)"
+203.svg,"[{(0, 0): ('circle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('square', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('square', 'white'), (1, 2): ('square', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('circle', 'black'), (3, 0): ('square', 'black'), (3, 1): ('circle', 'white'), (3, 2): ('square', 'white'), (4, 0): ('triangle', 'white'), (4, 1): ('square', 'black'), (4, 2): ('circle', 'white'), (5, 0): ('square', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('circle', 'black'), (6, 0): ('triangle', 'black'), (6, 1): ('triangle', 'white'), (6, 2): ('square', 'white'), (7, 0): ('square', 'black'), (7, 1): ('square', 'white'), (7, 2): ('circle', 'white'), (8, 0): ('circle', 'white'), (8, 1): ('triangle', 'black'), (8, 2): ('square', 'black')}, {(0, 0): ('circle', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('circle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('square', 'black'), (1, 2): ('circle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('triangle', 'black'), (4, 0): ('square', 'white'), (4, 1): ('triangle', 'black'), (4, 2): ('circle', 'black'), (5, 0): ('square', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('square', 'white'), (6, 0): ('circle', 'black'), (6, 1): ('circle', 'white'), (6, 2): ('triangle', 'white'), (7, 0): ('square', 'black'), (7, 1): ('triangle', 'white'), (7, 2): ('triangle', 'black'), (8, 0): ('square', 'black'), (8, 1): ('triangle', 'black'), (8, 2): ('triangle', 'black')}, {(0, 0): ('triangle', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('triangle', 'white'), (1, 0): ('triangle', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('triangle', 'black'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'white'), (3, 0): ('square', 'white'), (3, 1): ('square', 'white'), (3, 2): ('circle', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('triangle', 'white'), (4, 2): ('triangle', 'white'), (5, 0): ('circle', 'white'), (5, 1): ('square', 'white'), (5, 2): ('triangle', 'white'), (6, 0): ('triangle', 'white'), (6, 1): ('triangle', 'black'), (6, 2): ('circle', 'white'), (7, 0): ('square', 'white'), (7, 1): ('triangle', 'black'), (7, 2): ('square', 'white'), (8, 0): ('square', 'black'), (8, 1): ('circle', 'white'), (8, 2): ('square', 'black')}, {(0, 0): ('circle', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('triangle', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('square', 'white'), (2, 0): ('square', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('circle', 'white'), (3, 0): ('triangle', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('square', 'black'), (4, 0): ('circle', 'white'), (4, 1): ('circle', 'black'), (4, 2): ('circle', 'white'), (5, 0): ('triangle', 'black'), (5, 1): ('square', 'black'), (5, 2): ('triangle', 'black'), (6, 0): ('circle', 'black'), (6, 1): ('circle', 'white'), (6, 2): ('triangle', 'white'), (7, 0): ('circle', 'black'), (7, 1): ('triangle', 'black'), (7, 2): ('circle', 'black'), (8, 0): ('circle', 'black'), (8, 1): ('square', 'black'), (8, 2): ('square', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('square', 'black'), (1, 2): ('triangle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('circle', 'white'), (3, 0): ('triangle', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('square', 'white'), (4, 0): ('circle', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('circle', 'white'), (5, 0): ('square', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('triangle', 'white'), (6, 0): ('square', 'white'), (6, 1): ('triangle', 'white'), (6, 2): ('square', 'black'), (7, 0): ('circle', 'black'), (7, 1): ('square', 'white'), (7, 2): ('circle', 'black'), (8, 0): ('circle', 'white'), (8, 1): ('triangle', 'white'), (8, 2): ('circle', 'white')}]","(9, 3, 5)"
+204.svg,"[{(0, 0): ('circle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('circle', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('circle', 'black'), (3, 0): ('circle', 'white'), (3, 1): ('square', 'white'), (3, 2): ('square', 'black'), (4, 0): ('square', 'white'), (4, 1): ('circle', 'black'), (4, 2): ('circle', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('triangle', 'black'), (5, 2): ('circle', 'black'), (6, 0): ('circle', 'black'), (6, 1): ('triangle', 'black'), (6, 2): ('circle', 'white'), (7, 0): ('circle', 'black'), (7, 1): ('triangle', 'black'), (7, 2): ('square', 'black'), (8, 0): ('circle', 'white'), (8, 1): ('square', 'black'), (8, 2): ('triangle', 'black')}, {(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'white'), (1, 0): ('triangle', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'black'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('triangle', 'white'), (3, 0): ('square', 'black'), (3, 1): ('circle', 'white'), (3, 2): ('triangle', 'black'), (4, 0): ('square', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('square', 'black'), (5, 0): ('circle', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('square', 'black'), (6, 0): ('triangle', 'white'), (6, 1): ('triangle', 'black'), (6, 2): ('triangle', 'black'), (7, 0): ('triangle', 'black'), (7, 1): ('circle', 'black'), (7, 2): ('triangle', 'white'), (8, 0): ('square', 'white'), (8, 1): ('square', 'black'), (8, 2): ('square', 'black')}, {(0, 0): ('circle', 'black'), (0, 1): ('square', 'black'), (0, 2): ('circle', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'black'), (2, 2): ('triangle', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('circle', 'white'), (3, 2): ('triangle', 'black'), (4, 0): ('square', 'black'), (4, 1): ('triangle', 'white'), (4, 2): ('square', 'black'), (5, 0): ('triangle', 'black'), (5, 1): ('triangle', 'white'), (5, 2): ('square', 'black'), (6, 0): ('circle', 'white'), (6, 1): ('triangle', 'white'), (6, 2): ('square', 'black'), (7, 0): ('triangle', 'black'), (7, 1): ('circle', 'white'), (7, 2): ('square', 'white'), (8, 0): ('circle', 'black'), (8, 1): ('square', 'white'), (8, 2): ('triangle', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('square', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('circle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('circle', 'white'), (3, 0): ('triangle', 'black'), (3, 1): ('square', 'white'), (3, 2): ('circle', 'black'), (4, 0): ('triangle', 'white'), (4, 1): ('square', 'white'), (4, 2): ('square', 'black'), (5, 0): ('circle', 'black'), (5, 1): ('triangle', 'black'), (5, 2): ('triangle', 'black'), (6, 0): ('square', 'black'), (6, 1): ('circle', 'white'), (6, 2): ('circle', 'black'), (7, 0): ('circle', 'black'), (7, 1): ('triangle', 'black'), (7, 2): ('circle', 'white'), (8, 0): ('circle', 'black'), (8, 1): ('circle', 'white'), (8, 2): ('triangle', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('square', 'white'), (0, 2): ('square', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('square', 'black'), (1, 2): ('triangle', 'black'), (2, 0): ('square', 'black'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'white'), (3, 0): ('triangle', 'white'), (3, 1): ('circle', 'white'), (3, 2): ('square', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('circle', 'white'), (4, 2): ('square', 'white'), (5, 0): ('triangle', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('square', 'white'), (6, 0): ('square', 'black'), (6, 1): ('circle', 'white'), (6, 2): ('square', 'black'), (7, 0): ('square', 'black'), (7, 1): ('triangle', 'white'), (7, 2): ('triangle', 'black'), (8, 0): ('square', 'white'), (8, 1): ('square', 'white'), (8, 2): ('square', 'white')}]","(9, 3, 5)"
+205.svg,"[{(0, 0): ('triangle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'white'), (3, 0): ('square', 'black'), (3, 1): ('square', 'white'), (3, 2): ('square', 'white'), (4, 0): ('square', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('circle', 'black'), (5, 0): ('square', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('circle', 'black'), (6, 0): ('triangle', 'black'), (6, 1): ('triangle', 'white'), (6, 2): ('circle', 'white'), (7, 0): ('triangle', 'black'), (7, 1): ('square', 'black'), (7, 2): ('circle', 'white'), (8, 0): ('circle', 'white'), (8, 1): ('triangle', 'white'), (8, 2): ('square', 'white')}, {(0, 0): ('triangle', 'black'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('triangle', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('square', 'black'), (3, 0): ('triangle', 'white'), (3, 1): ('circle', 'white'), (3, 2): ('square', 'black'), (4, 0): ('square', 'black'), (4, 1): ('circle', 'white'), (4, 2): ('triangle', 'white'), (5, 0): ('square', 'black'), (5, 1): ('triangle', 'black'), (5, 2): ('triangle', 'white'), (6, 0): ('circle', 'white'), (6, 1): ('circle', 'white'), (6, 2): ('square', 'white'), (7, 0): ('square', 'white'), (7, 1): ('circle', 'white'), (7, 2): ('circle', 'white'), (8, 0): ('circle', 'white'), (8, 1): ('square', 'black'), (8, 2): ('circle', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('circle', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('square', 'black'), (2, 0): ('square', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'black'), (3, 0): ('circle', 'white'), (3, 1): ('triangle', 'white'), (3, 2): ('square', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('triangle', 'black'), (4, 2): ('square', 'black'), (5, 0): ('triangle', 'white'), (5, 1): ('square', 'white'), (5, 2): ('triangle', 'black'), (6, 0): ('triangle', 'white'), (6, 1): ('circle', 'black'), (6, 2): ('circle', 'white'), (7, 0): ('triangle', 'black'), (7, 1): ('circle', 'white'), (7, 2): ('square', 'white'), (8, 0): ('circle', 'black'), (8, 1): ('triangle', 'black'), (8, 2): ('circle', 'white')}, {(0, 0): ('circle', 'black'), (0, 1): ('square', 'white'), (0, 2): ('square', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('square', 'black'), (1, 2): ('circle', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('triangle', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('triangle', 'black'), (3, 2): ('square', 'white'), (4, 0): ('square', 'black'), (4, 1): ('square', 'black'), (4, 2): ('square', 'black'), (5, 0): ('square', 'white'), (5, 1): ('triangle', 'white'), (5, 2): ('triangle', 'white'), (6, 0): ('triangle', 'black'), (6, 1): ('circle', 'white'), (6, 2): ('triangle', 'white'), (7, 0): ('square', 'black'), (7, 1): ('circle', 'black'), (7, 2): ('triangle', 'white'), (8, 0): ('square', 'white'), (8, 1): ('triangle', 'white'), (8, 2): ('triangle', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('square', 'black'), (0, 2): ('square', 'white'), (1, 0): ('square', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'white'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('triangle', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('circle', 'white'), (4, 0): ('triangle', 'white'), (4, 1): ('square', 'white'), (4, 2): ('square', 'white'), (5, 0): ('square', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('square', 'white'), (6, 0): ('circle', 'black'), (6, 1): ('triangle', 'black'), (6, 2): ('triangle', 'white'), (7, 0): ('triangle', 'black'), (7, 1): ('square', 'white'), (7, 2): ('square', 'white'), (8, 0): ('triangle', 'white'), (8, 1): ('triangle', 'white'), (8, 2): ('circle', 'black')}]","(9, 3, 5)"
+206.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('square', 'black'), (0, 2): ('square', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'black'), (3, 0): ('square', 'white'), (3, 1): ('square', 'white'), (3, 2): ('circle', 'white'), (4, 0): ('square', 'black'), (4, 1): ('triangle', 'white'), (4, 2): ('square', 'white'), (5, 0): ('triangle', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('circle', 'white'), (6, 0): ('circle', 'white'), (6, 1): ('circle', 'black'), (6, 2): ('circle', 'white'), (7, 0): ('square', 'black'), (7, 1): ('circle', 'white'), (7, 2): ('triangle', 'black'), (8, 0): ('circle', 'white'), (8, 1): ('circle', 'white'), (8, 2): ('square', 'white')}, {(0, 0): ('square', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('triangle', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('triangle', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('square', 'black'), (3, 0): ('circle', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('square', 'white'), (4, 0): ('circle', 'black'), (4, 1): ('square', 'black'), (4, 2): ('square', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('square', 'white'), (5, 2): ('triangle', 'black'), (6, 0): ('circle', 'black'), (6, 1): ('circle', 'white'), (6, 2): ('square', 'white'), (7, 0): ('square', 'white'), (7, 1): ('square', 'white'), (7, 2): ('square', 'black'), (8, 0): ('square', 'black'), (8, 1): ('square', 'black'), (8, 2): ('circle', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('square', 'white'), (1, 2): ('triangle', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('square', 'white'), (2, 2): ('square', 'black'), (3, 0): ('triangle', 'white'), (3, 1): ('square', 'white'), (3, 2): ('circle', 'black'), (4, 0): ('circle', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('triangle', 'black'), (5, 0): ('circle', 'black'), (5, 1): ('square', 'white'), (5, 2): ('circle', 'black'), (6, 0): ('square', 'white'), (6, 1): ('square', 'black'), (6, 2): ('square', 'black'), (7, 0): ('triangle', 'black'), (7, 1): ('triangle', 'white'), (7, 2): ('triangle', 'black'), (8, 0): ('circle', 'white'), (8, 1): ('circle', 'black'), (8, 2): ('circle', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('square', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('triangle', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'white'), (3, 0): ('circle', 'black'), (3, 1): ('square', 'black'), (3, 2): ('circle', 'black'), (4, 0): ('square', 'white'), (4, 1): ('triangle', 'black'), (4, 2): ('circle', 'black'), (5, 0): ('square', 'black'), (5, 1): ('triangle', 'black'), (5, 2): ('triangle', 'black'), (6, 0): ('triangle', 'black'), (6, 1): ('triangle', 'white'), (6, 2): ('triangle', 'black'), (7, 0): ('triangle', 'black'), (7, 1): ('circle', 'white'), (7, 2): ('circle', 'white'), (8, 0): ('square', 'white'), (8, 1): ('circle', 'white'), (8, 2): ('circle', 'black')}, {(0, 0): ('circle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('triangle', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('square', 'black'), (1, 2): ('triangle', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('triangle', 'white'), (3, 0): ('square', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('circle', 'black'), (4, 0): ('square', 'white'), (4, 1): ('square', 'black'), (4, 2): ('square', 'black'), (5, 0): ('square', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('triangle', 'white'), (6, 0): ('circle', 'black'), (6, 1): ('triangle', 'black'), (6, 2): ('triangle', 'white'), (7, 0): ('square', 'black'), (7, 1): ('circle', 'black'), (7, 2): ('square', 'black'), (8, 0): ('circle', 'white'), (8, 1): ('circle', 'white'), (8, 2): ('circle', 'white')}]","(9, 3, 5)"
+207.svg,"[{(0, 0): ('square', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('circle', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('square', 'black'), (1, 2): ('circle', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('circle', 'black'), (3, 0): ('circle', 'white'), (3, 1): ('circle', 'white'), (3, 2): ('square', 'white'), (4, 0): ('circle', 'black'), (4, 1): ('triangle', 'white'), (4, 2): ('circle', 'black'), (5, 0): ('square', 'white'), (5, 1): ('triangle', 'white'), (5, 2): ('triangle', 'black'), (6, 0): ('triangle', 'white'), (6, 1): ('circle', 'black'), (6, 2): ('square', 'black'), (7, 0): ('circle', 'black'), (7, 1): ('square', 'black'), (7, 2): ('circle', 'white'), (8, 0): ('square', 'white'), (8, 1): ('square', 'white'), (8, 2): ('square', 'white')}, {(0, 0): ('circle', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('square', 'black'), (1, 2): ('square', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'white'), (3, 0): ('triangle', 'white'), (3, 1): ('square', 'white'), (3, 2): ('circle', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('triangle', 'black'), (4, 2): ('square', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('circle', 'black'), (6, 0): ('circle', 'black'), (6, 1): ('square', 'black'), (6, 2): ('circle', 'black'), (7, 0): ('square', 'white'), (7, 1): ('circle', 'white'), (7, 2): ('circle', 'white'), (8, 0): ('triangle', 'white'), (8, 1): ('triangle', 'white'), (8, 2): ('circle', 'black')}, {(0, 0): ('circle', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'white'), (1, 0): ('triangle', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('square', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'black'), (3, 0): ('square', 'white'), (3, 1): ('square', 'black'), (3, 2): ('square', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('square', 'black'), (4, 2): ('triangle', 'black'), (5, 0): ('triangle', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('triangle', 'white'), (6, 0): ('circle', 'white'), (6, 1): ('square', 'white'), (6, 2): ('circle', 'white'), (7, 0): ('triangle', 'white'), (7, 1): ('circle', 'black'), (7, 2): ('triangle', 'white'), (8, 0): ('triangle', 'white'), (8, 1): ('triangle', 'white'), (8, 2): ('circle', 'black')}, {(0, 0): ('circle', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('circle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('circle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('square', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('square', 'black'), (3, 2): ('square', 'white'), (4, 0): ('square', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('triangle', 'white'), (5, 0): ('square', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('triangle', 'black'), (6, 0): ('triangle', 'white'), (6, 1): ('circle', 'black'), (6, 2): ('square', 'white'), (7, 0): ('triangle', 'black'), (7, 1): ('circle', 'black'), (7, 2): ('triangle', 'white'), (8, 0): ('circle', 'black'), (8, 1): ('triangle', 'white'), (8, 2): ('square', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('triangle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('circle', 'white'), (3, 0): ('square', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('triangle', 'black'), (4, 0): ('triangle', 'white'), (4, 1): ('square', 'white'), (4, 2): ('square', 'white'), (5, 0): ('triangle', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('square', 'black'), (6, 0): ('square', 'black'), (6, 1): ('circle', 'black'), (6, 2): ('square', 'black'), (7, 0): ('triangle', 'black'), (7, 1): ('square', 'white'), (7, 2): ('triangle', 'black'), (8, 0): ('triangle', 'white'), (8, 1): ('triangle', 'black'), (8, 2): ('square', 'white')}]","(9, 3, 5)"
+208.svg,"[{(0, 0): ('triangle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('square', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('square', 'black'), (3, 0): ('circle', 'black'), (3, 1): ('square', 'black'), (3, 2): ('circle', 'black'), (4, 0): ('square', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('circle', 'black'), (5, 0): ('square', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('circle', 'black'), (6, 0): ('square', 'black'), (6, 1): ('circle', 'white'), (6, 2): ('circle', 'black'), (7, 0): ('triangle', 'white'), (7, 1): ('circle', 'black'), (7, 2): ('square', 'black'), (8, 0): ('square', 'white'), (8, 1): ('circle', 'black'), (8, 2): ('triangle', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('square', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('circle', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('square', 'white'), (2, 2): ('square', 'black'), (3, 0): ('circle', 'black'), (3, 1): ('triangle', 'black'), (3, 2): ('square', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('square', 'white'), (4, 2): ('triangle', 'white'), (5, 0): ('circle', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('square', 'black'), (6, 0): ('circle', 'black'), (6, 1): ('square', 'black'), (6, 2): ('triangle', 'white'), (7, 0): ('triangle', 'white'), (7, 1): ('square', 'black'), (7, 2): ('square', 'black'), (8, 0): ('circle', 'white'), (8, 1): ('circle', 'white'), (8, 2): ('circle', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('square', 'black'), (1, 0): ('square', 'white'), (1, 1): ('square', 'black'), (1, 2): ('square', 'white'), (2, 0): ('square', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'black'), (3, 0): ('triangle', 'white'), (3, 1): ('circle', 'white'), (3, 2): ('triangle', 'white'), (4, 0): ('circle', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('square', 'black'), (5, 0): ('square', 'white'), (5, 1): ('triangle', 'white'), (5, 2): ('triangle', 'white'), (6, 0): ('square', 'black'), (6, 1): ('circle', 'black'), (6, 2): ('square', 'white'), (7, 0): ('circle', 'black'), (7, 1): ('triangle', 'white'), (7, 2): ('square', 'white'), (8, 0): ('circle', 'white'), (8, 1): ('triangle', 'white'), (8, 2): ('circle', 'black')}, {(0, 0): ('circle', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('circle', 'white'), (1, 0): ('triangle', 'white'), (1, 1): ('square', 'white'), (1, 2): ('triangle', 'black'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'white'), (3, 0): ('triangle', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('circle', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('triangle', 'black'), (4, 2): ('circle', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('triangle', 'white'), (6, 0): ('circle', 'white'), (6, 1): ('circle', 'black'), (6, 2): ('triangle', 'black'), (7, 0): ('circle', 'white'), (7, 1): ('circle', 'white'), (7, 2): ('circle', 'white'), (8, 0): ('square', 'white'), (8, 1): ('circle', 'white'), (8, 2): ('circle', 'black')}, {(0, 0): ('circle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('square', 'white'), (1, 0): ('square', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('square', 'white'), (3, 0): ('square', 'white'), (3, 1): ('square', 'white'), (3, 2): ('circle', 'black'), (4, 0): ('triangle', 'white'), (4, 1): ('square', 'white'), (4, 2): ('circle', 'black'), (5, 0): ('triangle', 'white'), (5, 1): ('triangle', 'white'), (5, 2): ('triangle', 'black'), (6, 0): ('circle', 'black'), (6, 1): ('square', 'black'), (6, 2): ('square', 'black'), (7, 0): ('triangle', 'white'), (7, 1): ('square', 'black'), (7, 2): ('circle', 'white'), (8, 0): ('square', 'black'), (8, 1): ('circle', 'white'), (8, 2): ('square', 'white')}]","(9, 3, 5)"
+209.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('square', 'black'), (0, 2): ('circle', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'black'), (3, 0): ('square', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('circle', 'white'), (4, 0): ('square', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('square', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('triangle', 'white'), (5, 2): ('triangle', 'black'), (6, 0): ('circle', 'white'), (6, 1): ('triangle', 'white'), (6, 2): ('circle', 'black'), (7, 0): ('triangle', 'white'), (7, 1): ('circle', 'black'), (7, 2): ('square', 'black'), (8, 0): ('circle', 'white'), (8, 1): ('circle', 'black'), (8, 2): ('triangle', 'black')}, {(0, 0): ('square', 'black'), (0, 1): ('square', 'black'), (0, 2): ('circle', 'white'), (1, 0): ('triangle', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'black'), (2, 0): ('square', 'black'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'white'), (3, 0): ('triangle', 'white'), (3, 1): ('circle', 'black'), (3, 2): ('square', 'black'), (4, 0): ('square', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('triangle', 'black'), (5, 0): ('square', 'white'), (5, 1): ('triangle', 'black'), (5, 2): ('triangle', 'black'), (6, 0): ('square', 'black'), (6, 1): ('circle', 'white'), (6, 2): ('triangle', 'black'), (7, 0): ('circle', 'black'), (7, 1): ('circle', 'white'), (7, 2): ('square', 'black'), (8, 0): ('circle', 'white'), (8, 1): ('circle', 'white'), (8, 2): ('triangle', 'white')}, {(0, 0): ('square', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('triangle', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('triangle', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'black'), (3, 0): ('square', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('square', 'black'), (4, 0): ('square', 'white'), (4, 1): ('circle', 'black'), (4, 2): ('square', 'black'), (5, 0): ('square', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('square', 'white'), (6, 0): ('triangle', 'black'), (6, 1): ('square', 'black'), (6, 2): ('triangle', 'black'), (7, 0): ('circle', 'black'), (7, 1): ('triangle', 'white'), (7, 2): ('circle', 'white'), (8, 0): ('circle', 'black'), (8, 1): ('circle', 'white'), (8, 2): ('triangle', 'black')}, {(0, 0): ('triangle', 'black'), (0, 1): ('square', 'black'), (0, 2): ('circle', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'black'), (2, 0): ('square', 'black'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'white'), (3, 0): ('circle', 'white'), (3, 1): ('triangle', 'white'), (3, 2): ('square', 'white'), (4, 0): ('circle', 'white'), (4, 1): ('square', 'white'), (4, 2): ('circle', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('square', 'white'), (5, 2): ('triangle', 'white'), (6, 0): ('triangle', 'white'), (6, 1): ('triangle', 'black'), (6, 2): ('square', 'black'), (7, 0): ('square', 'black'), (7, 1): ('square', 'white'), (7, 2): ('triangle', 'white'), (8, 0): ('circle', 'white'), (8, 1): ('square', 'white'), (8, 2): ('circle', 'black')}, {(0, 0): ('circle', 'white'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('circle', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'black'), (3, 0): ('circle', 'black'), (3, 1): ('square', 'white'), (3, 2): ('triangle', 'black'), (4, 0): ('square', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('square', 'white'), (5, 0): ('square', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('triangle', 'black'), (6, 0): ('triangle', 'white'), (6, 1): ('triangle', 'black'), (6, 2): ('triangle', 'black'), (7, 0): ('circle', 'white'), (7, 1): ('circle', 'black'), (7, 2): ('circle', 'black'), (8, 0): ('square', 'black'), (8, 1): ('triangle', 'white'), (8, 2): ('circle', 'black')}]","(9, 3, 5)"
+210.svg,"[{(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('triangle', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('circle', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'black'), (1, 3): ('circle', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('circle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('triangle', 'white'), (2, 4): ('square', 'white'), (2, 5): ('square', 'white'), (3, 0): ('square', 'black'), (3, 1): ('square', 'white'), (3, 2): ('square', 'white'), (3, 3): ('triangle', 'black'), (3, 4): ('square', 'black'), (3, 5): ('circle', 'white'), (4, 0): ('square', 'black'), (4, 1): ('square', 'white'), (4, 2): ('circle', 'black'), (4, 3): ('circle', 'white'), (4, 4): ('square', 'white'), (4, 5): ('circle', 'white'), (5, 0): ('triangle', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('circle', 'black'), (5, 3): ('square', 'black'), (5, 4): ('square', 'black'), (5, 5): ('square', 'black'), (6, 0): ('circle', 'black'), (6, 1): ('triangle', 'white'), (6, 2): ('circle', 'white'), (6, 3): ('triangle', 'black'), (6, 4): ('circle', 'white'), (6, 5): ('circle', 'black'), (7, 0): ('square', 'white'), (7, 1): ('square', 'black'), (7, 2): ('square', 'white'), (7, 3): ('circle', 'black'), (7, 4): ('square', 'black'), (7, 5): ('triangle', 'white'), (8, 0): ('square', 'black'), (8, 1): ('circle', 'black'), (8, 2): ('circle', 'white'), (8, 3): ('square', 'black'), (8, 4): ('circle', 'white'), (8, 5): ('triangle', 'black')}]","(9, 6, 1)"
+211.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('triangle', 'white'), (0, 4): ('triangle', 'black'), (0, 5): ('circle', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('square', 'black'), (1, 2): ('circle', 'black'), (1, 3): ('triangle', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('triangle', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('square', 'black'), (2, 3): ('triangle', 'white'), (2, 4): ('circle', 'white'), (2, 5): ('circle', 'black'), (3, 0): ('circle', 'black'), (3, 1): ('circle', 'white'), (3, 2): ('circle', 'white'), (3, 3): ('triangle', 'black'), (3, 4): ('triangle', 'black'), (3, 5): ('triangle', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('square', 'black'), (4, 2): ('square', 'black'), (4, 3): ('triangle', 'black'), (4, 4): ('square', 'black'), (4, 5): ('triangle', 'white'), (5, 0): ('triangle', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('square', 'black'), (5, 3): ('circle', 'white'), (5, 4): ('circle', 'black'), (5, 5): ('square', 'black'), (6, 0): ('square', 'white'), (6, 1): ('circle', 'white'), (6, 2): ('triangle', 'white'), (6, 3): ('triangle', 'black'), (6, 4): ('triangle', 'white'), (6, 5): ('triangle', 'white'), (7, 0): ('square', 'black'), (7, 1): ('triangle', 'white'), (7, 2): ('triangle', 'white'), (7, 3): ('triangle', 'black'), (7, 4): ('circle', 'white'), (7, 5): ('circle', 'white'), (8, 0): ('circle', 'black'), (8, 1): ('circle', 'white'), (8, 2): ('triangle', 'white'), (8, 3): ('circle', 'black'), (8, 4): ('circle', 'white'), (8, 5): ('circle', 'white')}]","(9, 6, 1)"
+212.svg,"[{(0, 0): ('triangle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('square', 'black'), (0, 4): ('square', 'black'), (0, 5): ('triangle', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('square', 'black'), (1, 4): ('square', 'black'), (1, 5): ('square', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('circle', 'black'), (2, 3): ('square', 'black'), (2, 4): ('circle', 'white'), (2, 5): ('triangle', 'black'), (3, 0): ('circle', 'white'), (3, 1): ('square', 'black'), (3, 2): ('triangle', 'white'), (3, 3): ('square', 'black'), (3, 4): ('circle', 'black'), (3, 5): ('triangle', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('triangle', 'black'), (4, 2): ('triangle', 'black'), (4, 3): ('triangle', 'black'), (4, 4): ('triangle', 'white'), (4, 5): ('triangle', 'white'), (5, 0): ('square', 'black'), (5, 1): ('square', 'white'), (5, 2): ('square', 'black'), (5, 3): ('square', 'black'), (5, 4): ('triangle', 'black'), (5, 5): ('circle', 'white'), (6, 0): ('square', 'white'), (6, 1): ('circle', 'black'), (6, 2): ('triangle', 'white'), (6, 3): ('circle', 'black'), (6, 4): ('square', 'black'), (6, 5): ('triangle', 'black'), (7, 0): ('circle', 'white'), (7, 1): ('triangle', 'black'), (7, 2): ('triangle', 'white'), (7, 3): ('triangle', 'white'), (7, 4): ('square', 'white'), (7, 5): ('square', 'white'), (8, 0): ('circle', 'black'), (8, 1): ('circle', 'white'), (8, 2): ('square', 'black'), (8, 3): ('circle', 'black'), (8, 4): ('triangle', 'black'), (8, 5): ('triangle', 'black')}]","(9, 6, 1)"
+213.svg,"[{(0, 0): ('circle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'black'), (0, 3): ('square', 'white'), (0, 4): ('triangle', 'black'), (0, 5): ('square', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'black'), (1, 3): ('circle', 'white'), (1, 4): ('square', 'black'), (1, 5): ('circle', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'black'), (2, 3): ('square', 'black'), (2, 4): ('circle', 'black'), (2, 5): ('triangle', 'black'), (3, 0): ('circle', 'black'), (3, 1): ('triangle', 'black'), (3, 2): ('square', 'black'), (3, 3): ('square', 'white'), (3, 4): ('square', 'white'), (3, 5): ('square', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('circle', 'white'), (4, 2): ('circle', 'black'), (4, 3): ('square', 'white'), (4, 4): ('circle', 'white'), (4, 5): ('square', 'black'), (5, 0): ('circle', 'black'), (5, 1): ('triangle', 'black'), (5, 2): ('circle', 'black'), (5, 3): ('triangle', 'white'), (5, 4): ('circle', 'black'), (5, 5): ('triangle', 'black'), (6, 0): ('triangle', 'white'), (6, 1): ('circle', 'black'), (6, 2): ('circle', 'white'), (6, 3): ('square', 'white'), (6, 4): ('circle', 'black'), (6, 5): ('square', 'black'), (7, 0): ('circle', 'black'), (7, 1): ('circle', 'white'), (7, 2): ('square', 'black'), (7, 3): ('circle', 'white'), (7, 4): ('square', 'black'), (7, 5): ('circle', 'white'), (8, 0): ('triangle', 'white'), (8, 1): ('triangle', 'black'), (8, 2): ('triangle', 'black'), (8, 3): ('triangle', 'black'), (8, 4): ('triangle', 'black'), (8, 5): ('triangle', 'black')}]","(9, 6, 1)"
+214.svg,"[{(0, 0): ('square', 'black'), (0, 1): ('square', 'black'), (0, 2): ('square', 'black'), (0, 3): ('triangle', 'white'), (0, 4): ('triangle', 'white'), (0, 5): ('triangle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('square', 'black'), (1, 5): ('square', 'white'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'black'), (2, 3): ('square', 'white'), (2, 4): ('circle', 'white'), (2, 5): ('circle', 'white'), (3, 0): ('triangle', 'white'), (3, 1): ('square', 'white'), (3, 2): ('circle', 'white'), (3, 3): ('square', 'black'), (3, 4): ('triangle', 'black'), (3, 5): ('triangle', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('triangle', 'white'), (4, 2): ('triangle', 'white'), (4, 3): ('triangle', 'black'), (4, 4): ('square', 'black'), (4, 5): ('square', 'white'), (5, 0): ('triangle', 'white'), (5, 1): ('square', 'white'), (5, 2): ('circle', 'black'), (5, 3): ('square', 'black'), (5, 4): ('triangle', 'white'), (5, 5): ('circle', 'white'), (6, 0): ('circle', 'white'), (6, 1): ('circle', 'white'), (6, 2): ('circle', 'black'), (6, 3): ('circle', 'black'), (6, 4): ('square', 'white'), (6, 5): ('square', 'white'), (7, 0): ('circle', 'white'), (7, 1): ('square', 'white'), (7, 2): ('triangle', 'black'), (7, 3): ('square', 'black'), (7, 4): ('triangle', 'white'), (7, 5): ('circle', 'black'), (8, 0): ('square', 'white'), (8, 1): ('circle', 'white'), (8, 2): ('square', 'black'), (8, 3): ('square', 'white'), (8, 4): ('triangle', 'white'), (8, 5): ('circle', 'white')}]","(9, 6, 1)"
+215.svg,"[{(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'white'), (0, 3): ('circle', 'white'), (0, 4): ('circle', 'white'), (0, 5): ('circle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('square', 'black'), (1, 5): ('triangle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'white'), (2, 3): ('circle', 'white'), (2, 4): ('circle', 'white'), (2, 5): ('square', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('square', 'black'), (3, 2): ('square', 'black'), (3, 3): ('square', 'black'), (3, 4): ('triangle', 'white'), (3, 5): ('square', 'black'), (4, 0): ('square', 'white'), (4, 1): ('square', 'white'), (4, 2): ('triangle', 'white'), (4, 3): ('square', 'black'), (4, 4): ('circle', 'black'), (4, 5): ('triangle', 'white'), (5, 0): ('triangle', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('square', 'black'), (5, 3): ('circle', 'white'), (5, 4): ('circle', 'white'), (5, 5): ('square', 'black'), (6, 0): ('circle', 'black'), (6, 1): ('circle', 'black'), (6, 2): ('circle', 'white'), (6, 3): ('circle', 'black'), (6, 4): ('circle', 'black'), (6, 5): ('square', 'black'), (7, 0): ('triangle', 'black'), (7, 1): ('square', 'black'), (7, 2): ('circle', 'white'), (7, 3): ('circle', 'black'), (7, 4): ('square', 'white'), (7, 5): ('square', 'white'), (8, 0): ('circle', 'black'), (8, 1): ('square', 'black'), (8, 2): ('triangle', 'white'), (8, 3): ('square', 'white'), (8, 4): ('square', 'black'), (8, 5): ('circle', 'black')}]","(9, 6, 1)"
+216.svg,"[{(0, 0): ('circle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'white'), (0, 3): ('square', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('circle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('square', 'white'), (2, 0): ('square', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('square', 'white'), (2, 3): ('square', 'white'), (2, 4): ('circle', 'white'), (2, 5): ('circle', 'white'), (3, 0): ('square', 'black'), (3, 1): ('square', 'black'), (3, 2): ('square', 'black'), (3, 3): ('triangle', 'white'), (3, 4): ('square', 'black'), (3, 5): ('triangle', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('triangle', 'white'), (4, 2): ('square', 'black'), (4, 3): ('circle', 'black'), (4, 4): ('circle', 'black'), (4, 5): ('triangle', 'white'), (5, 0): ('square', 'black'), (5, 1): ('triangle', 'white'), (5, 2): ('triangle', 'white'), (5, 3): ('square', 'black'), (5, 4): ('square', 'black'), (5, 5): ('square', 'black'), (6, 0): ('circle', 'white'), (6, 1): ('circle', 'white'), (6, 2): ('circle', 'black'), (6, 3): ('square', 'black'), (6, 4): ('square', 'black'), (6, 5): ('triangle', 'black'), (7, 0): ('triangle', 'white'), (7, 1): ('triangle', 'white'), (7, 2): ('square', 'black'), (7, 3): ('circle', 'white'), (7, 4): ('triangle', 'white'), (7, 5): ('triangle', 'white'), (8, 0): ('square', 'white'), (8, 1): ('triangle', 'black'), (8, 2): ('triangle', 'white'), (8, 3): ('square', 'black'), (8, 4): ('triangle', 'white'), (8, 5): ('circle', 'white')}]","(9, 6, 1)"
+217.svg,"[{(0, 0): ('triangle', 'black'), (0, 1): ('square', 'black'), (0, 2): ('square', 'white'), (0, 3): ('square', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('circle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('triangle', 'black'), (1, 5): ('triangle', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('triangle', 'white'), (2, 4): ('square', 'black'), (2, 5): ('triangle', 'white'), (3, 0): ('square', 'white'), (3, 1): ('circle', 'black'), (3, 2): ('square', 'black'), (3, 3): ('circle', 'black'), (3, 4): ('square', 'black'), (3, 5): ('circle', 'white'), (4, 0): ('circle', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('triangle', 'black'), (4, 3): ('circle', 'black'), (4, 4): ('square', 'white'), (4, 5): ('circle', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('square', 'white'), (5, 3): ('circle', 'black'), (5, 4): ('triangle', 'white'), (5, 5): ('circle', 'black'), (6, 0): ('square', 'black'), (6, 1): ('circle', 'white'), (6, 2): ('triangle', 'black'), (6, 3): ('circle', 'black'), (6, 4): ('triangle', 'black'), (6, 5): ('square', 'black'), (7, 0): ('triangle', 'black'), (7, 1): ('circle', 'black'), (7, 2): ('triangle', 'black'), (7, 3): ('square', 'white'), (7, 4): ('circle', 'white'), (7, 5): ('triangle', 'black'), (8, 0): ('circle', 'black'), (8, 1): ('circle', 'black'), (8, 2): ('square', 'black'), (8, 3): ('square', 'black'), (8, 4): ('square', 'white'), (8, 5): ('square', 'white')}]","(9, 6, 1)"
+218.svg,"[{(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('circle', 'white'), (0, 3): ('circle', 'white'), (0, 4): ('circle', 'black'), (0, 5): ('square', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'white'), (1, 3): ('square', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('square', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('square', 'black'), (2, 4): ('triangle', 'white'), (2, 5): ('circle', 'black'), (3, 0): ('square', 'white'), (3, 1): ('triangle', 'black'), (3, 2): ('square', 'black'), (3, 3): ('circle', 'black'), (3, 4): ('square', 'white'), (3, 5): ('circle', 'black'), (4, 0): ('circle', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('square', 'black'), (4, 3): ('triangle', 'black'), (4, 4): ('circle', 'black'), (4, 5): ('triangle', 'black'), (5, 0): ('triangle', 'white'), (5, 1): ('square', 'white'), (5, 2): ('triangle', 'black'), (5, 3): ('circle', 'white'), (5, 4): ('square', 'white'), (5, 5): ('triangle', 'white'), (6, 0): ('square', 'white'), (6, 1): ('triangle', 'black'), (6, 2): ('circle', 'white'), (6, 3): ('triangle', 'white'), (6, 4): ('triangle', 'black'), (6, 5): ('triangle', 'black'), (7, 0): ('triangle', 'black'), (7, 1): ('triangle', 'black'), (7, 2): ('square', 'black'), (7, 3): ('square', 'white'), (7, 4): ('square', 'black'), (7, 5): ('square', 'black'), (8, 0): ('square', 'white'), (8, 1): ('triangle', 'black'), (8, 2): ('triangle', 'black'), (8, 3): ('square', 'white'), (8, 4): ('square', 'black'), (8, 5): ('square', 'black')}]","(9, 6, 1)"
+219.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('triangle', 'white'), (0, 4): ('triangle', 'white'), (0, 5): ('square', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('circle', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('square', 'black'), (1, 5): ('square', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('square', 'white'), (2, 4): ('triangle', 'white'), (2, 5): ('triangle', 'black'), (3, 0): ('circle', 'white'), (3, 1): ('circle', 'black'), (3, 2): ('square', 'black'), (3, 3): ('circle', 'black'), (3, 4): ('triangle', 'white'), (3, 5): ('circle', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('triangle', 'white'), (4, 2): ('square', 'black'), (4, 3): ('circle', 'white'), (4, 4): ('circle', 'black'), (4, 5): ('circle', 'black'), (5, 0): ('triangle', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('triangle', 'black'), (5, 3): ('triangle', 'white'), (5, 4): ('square', 'black'), (5, 5): ('triangle', 'white'), (6, 0): ('circle', 'white'), (6, 1): ('circle', 'white'), (6, 2): ('triangle', 'black'), (6, 3): ('triangle', 'black'), (6, 4): ('square', 'white'), (6, 5): ('circle', 'white'), (7, 0): ('triangle', 'white'), (7, 1): ('circle', 'white'), (7, 2): ('circle', 'black'), (7, 3): ('square', 'black'), (7, 4): ('triangle', 'white'), (7, 5): ('triangle', 'white'), (8, 0): ('triangle', 'white'), (8, 1): ('triangle', 'black'), (8, 2): ('square', 'white'), (8, 3): ('triangle', 'white'), (8, 4): ('square', 'black'), (8, 5): ('square', 'white')}]","(9, 6, 1)"
+220.svg,"[{(0, 0): ('circle', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('circle', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('circle', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('square', 'white'), (1, 2): ('square', 'black'), (1, 3): ('circle', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('square', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('circle', 'black'), (2, 3): ('square', 'white'), (2, 4): ('square', 'black'), (2, 5): ('square', 'black'), (3, 0): ('square', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('square', 'white'), (3, 3): ('triangle', 'white'), (3, 4): ('triangle', 'white'), (3, 5): ('triangle', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('square', 'white'), (4, 3): ('circle', 'white'), (4, 4): ('circle', 'black'), (4, 5): ('triangle', 'black'), (5, 0): ('square', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('triangle', 'black'), (5, 3): ('triangle', 'white'), (5, 4): ('triangle', 'black'), (5, 5): ('square', 'white'), (6, 0): ('circle', 'white'), (6, 1): ('triangle', 'white'), (6, 2): ('square', 'white'), (6, 3): ('triangle', 'black'), (6, 4): ('circle', 'white'), (6, 5): ('square', 'white'), (7, 0): ('circle', 'black'), (7, 1): ('circle', 'black'), (7, 2): ('circle', 'white'), (7, 3): ('triangle', 'white'), (7, 4): ('square', 'white'), (7, 5): ('triangle', 'black'), (8, 0): ('square', 'white'), (8, 1): ('triangle', 'white'), (8, 2): ('circle', 'white'), (8, 3): ('triangle', 'black'), (8, 4): ('circle', 'white'), (8, 5): ('triangle', 'white')}, {(0, 0): ('circle', 'black'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('square', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('square', 'black'), (1, 3): ('square', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('circle', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'black'), (2, 3): ('square', 'white'), (2, 4): ('square', 'white'), (2, 5): ('square', 'black'), (3, 0): ('circle', 'white'), (3, 1): ('square', 'white'), (3, 2): ('triangle', 'black'), (3, 3): ('square', 'white'), (3, 4): ('square', 'white'), (3, 5): ('circle', 'white'), (4, 0): ('circle', 'white'), (4, 1): ('square', 'white'), (4, 2): ('circle', 'white'), (4, 3): ('square', 'black'), (4, 4): ('square', 'white'), (4, 5): ('square', 'white'), (5, 0): ('triangle', 'white'), (5, 1): ('triangle', 'black'), (5, 2): ('square', 'white'), (5, 3): ('triangle', 'white'), (5, 4): ('square', 'black'), (5, 5): ('square', 'black'), (6, 0): ('square', 'black'), (6, 1): ('circle', 'white'), (6, 2): ('square', 'white'), (6, 3): ('square', 'black'), (6, 4): ('square', 'white'), (6, 5): ('triangle', 'white'), (7, 0): ('circle', 'black'), (7, 1): ('triangle', 'white'), (7, 2): ('circle', 'white'), (7, 3): ('circle', 'white'), (7, 4): ('square', 'white'), (7, 5): ('square', 'white'), (8, 0): ('square', 'white'), (8, 1): ('square', 'white'), (8, 2): ('square', 'white'), (8, 3): ('triangle', 'white'), (8, 4): ('triangle', 'black'), (8, 5): ('triangle', 'black')}, {(0, 0): ('circle', 'white'), (0, 1): ('square', 'black'), (0, 2): ('square', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('square', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('square', 'black'), (1, 2): ('square', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('triangle', 'white'), (1, 5): ('triangle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('square', 'black'), (2, 3): ('circle', 'black'), (2, 4): ('square', 'black'), (2, 5): ('triangle', 'white'), (3, 0): ('square', 'white'), (3, 1): ('square', 'white'), (3, 2): ('square', 'white'), (3, 3): ('square', 'white'), (3, 4): ('square', 'black'), (3, 5): ('circle', 'black'), (4, 0): ('square', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('triangle', 'white'), (4, 3): ('square', 'black'), (4, 4): ('square', 'black'), (4, 5): ('triangle', 'black'), (5, 0): ('triangle', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('triangle', 'black'), (5, 3): ('square', 'white'), (5, 4): ('triangle', 'white'), (5, 5): ('circle', 'black'), (6, 0): ('circle', 'white'), (6, 1): ('circle', 'white'), (6, 2): ('triangle', 'white'), (6, 3): ('circle', 'black'), (6, 4): ('triangle', 'black'), (6, 5): ('square', 'black'), (7, 0): ('square', 'white'), (7, 1): ('square', 'black'), (7, 2): ('square', 'white'), (7, 3): ('triangle', 'white'), (7, 4): ('circle', 'black'), (7, 5): ('circle', 'black'), (8, 0): ('circle', 'black'), (8, 1): ('circle', 'black'), (8, 2): ('circle', 'black'), (8, 3): ('triangle', 'white'), (8, 4): ('triangle', 'black'), (8, 5): ('triangle', 'black')}]","(9, 6, 3)"
+221.svg,"[{(0, 0): ('triangle', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('square', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('circle', 'black'), (1, 5): ('square', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('triangle', 'black'), (2, 3): ('square', 'white'), (2, 4): ('square', 'white'), (2, 5): ('circle', 'black'), (3, 0): ('circle', 'white'), (3, 1): ('circle', 'white'), (3, 2): ('triangle', 'black'), (3, 3): ('circle', 'black'), (3, 4): ('circle', 'black'), (3, 5): ('triangle', 'black'), (4, 0): ('square', 'black'), (4, 1): ('triangle', 'black'), (4, 2): ('triangle', 'white'), (4, 3): ('square', 'white'), (4, 4): ('circle', 'black'), (4, 5): ('circle', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('square', 'white'), (5, 3): ('triangle', 'white'), (5, 4): ('circle', 'black'), (5, 5): ('circle', 'black'), (6, 0): ('triangle', 'white'), (6, 1): ('circle', 'white'), (6, 2): ('square', 'white'), (6, 3): ('triangle', 'black'), (6, 4): ('circle', 'black'), (6, 5): ('triangle', 'black'), (7, 0): ('square', 'white'), (7, 1): ('triangle', 'black'), (7, 2): ('square', 'white'), (7, 3): ('circle', 'white'), (7, 4): ('square', 'white'), (7, 5): ('triangle', 'black'), (8, 0): ('square', 'white'), (8, 1): ('circle', 'white'), (8, 2): ('triangle', 'white'), (8, 3): ('square', 'white'), (8, 4): ('circle', 'white'), (8, 5): ('circle', 'white')}, {(0, 0): ('triangle', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('square', 'black'), (0, 3): ('circle', 'white'), (0, 4): ('circle', 'white'), (0, 5): ('triangle', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'white'), (1, 3): ('triangle', 'white'), (1, 4): ('triangle', 'black'), (1, 5): ('circle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('square', 'black'), (2, 3): ('square', 'black'), (2, 4): ('square', 'white'), (2, 5): ('circle', 'white'), (3, 0): ('square', 'white'), (3, 1): ('triangle', 'white'), (3, 2): ('circle', 'black'), (3, 3): ('triangle', 'white'), (3, 4): ('circle', 'white'), (3, 5): ('square', 'black'), (4, 0): ('triangle', 'white'), (4, 1): ('triangle', 'black'), (4, 2): ('circle', 'black'), (4, 3): ('circle', 'white'), (4, 4): ('circle', 'white'), (4, 5): ('triangle', 'white'), (5, 0): ('triangle', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('triangle', 'white'), (5, 3): ('square', 'white'), (5, 4): ('circle', 'black'), (5, 5): ('square', 'black'), (6, 0): ('circle', 'white'), (6, 1): ('square', 'black'), (6, 2): ('triangle', 'black'), (6, 3): ('circle', 'white'), (6, 4): ('circle', 'black'), (6, 5): ('square', 'white'), (7, 0): ('square', 'white'), (7, 1): ('square', 'white'), (7, 2): ('circle', 'white'), (7, 3): ('triangle', 'white'), (7, 4): ('square', 'black'), (7, 5): ('square', 'white'), (8, 0): ('circle', 'black'), (8, 1): ('triangle', 'white'), (8, 2): ('square', 'white'), (8, 3): ('triangle', 'black'), (8, 4): ('circle', 'white'), (8, 5): ('circle', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('circle', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('circle', 'black'), (1, 5): ('triangle', 'black'), (2, 0): ('square', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('triangle', 'white'), (2, 3): ('square', 'black'), (2, 4): ('square', 'white'), (2, 5): ('circle', 'white'), (3, 0): ('triangle', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('square', 'black'), (3, 3): ('triangle', 'black'), (3, 4): ('triangle', 'white'), (3, 5): ('circle', 'black'), (4, 0): ('circle', 'white'), (4, 1): ('circle', 'black'), (4, 2): ('square', 'black'), (4, 3): ('triangle', 'white'), (4, 4): ('triangle', 'white'), (4, 5): ('circle', 'white'), (5, 0): ('circle', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('circle', 'white'), (5, 3): ('triangle', 'white'), (5, 4): ('square', 'white'), (5, 5): ('triangle', 'black'), (6, 0): ('circle', 'black'), (6, 1): ('square', 'white'), (6, 2): ('circle', 'black'), (6, 3): ('circle', 'white'), (6, 4): ('triangle', 'black'), (6, 5): ('triangle', 'black'), (7, 0): ('triangle', 'white'), (7, 1): ('square', 'white'), (7, 2): ('square', 'black'), (7, 3): ('triangle', 'black'), (7, 4): ('triangle', 'black'), (7, 5): ('square', 'white'), (8, 0): ('square', 'black'), (8, 1): ('circle', 'white'), (8, 2): ('triangle', 'black'), (8, 3): ('triangle', 'white'), (8, 4): ('square', 'white'), (8, 5): ('circle', 'black')}]","(9, 6, 3)"
+222.svg,"[{(0, 0): ('circle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'black'), (0, 3): ('square', 'black'), (0, 4): ('circle', 'black'), (0, 5): ('circle', 'white'), (1, 0): ('triangle', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'black'), (1, 3): ('circle', 'white'), (1, 4): ('square', 'white'), (1, 5): ('circle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('square', 'white'), (2, 3): ('circle', 'white'), (2, 4): ('triangle', 'white'), (2, 5): ('circle', 'white'), (3, 0): ('circle', 'black'), (3, 1): ('circle', 'white'), (3, 2): ('square', 'white'), (3, 3): ('square', 'white'), (3, 4): ('square', 'white'), (3, 5): ('square', 'white'), (4, 0): ('circle', 'white'), (4, 1): ('circle', 'black'), (4, 2): ('circle', 'white'), (4, 3): ('square', 'white'), (4, 4): ('triangle', 'black'), (4, 5): ('square', 'white'), (5, 0): ('square', 'black'), (5, 1): ('triangle', 'white'), (5, 2): ('triangle', 'black'), (5, 3): ('square', 'black'), (5, 4): ('triangle', 'white'), (5, 5): ('triangle', 'white'), (6, 0): ('triangle', 'black'), (6, 1): ('triangle', 'black'), (6, 2): ('square', 'white'), (6, 3): ('triangle', 'white'), (6, 4): ('circle', 'white'), (6, 5): ('triangle', 'white'), (7, 0): ('circle', 'black'), (7, 1): ('circle', 'white'), (7, 2): ('circle', 'white'), (7, 3): ('square', 'black'), (7, 4): ('circle', 'black'), (7, 5): ('triangle', 'black'), (8, 0): ('triangle', 'white'), (8, 1): ('square', 'black'), (8, 2): ('circle', 'black'), (8, 3): ('square', 'white'), (8, 4): ('triangle', 'black'), (8, 5): ('square', 'white')}, {(0, 0): ('triangle', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('triangle', 'black'), (0, 3): ('square', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('square', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'black'), (1, 3): ('triangle', 'white'), (1, 4): ('square', 'black'), (1, 5): ('circle', 'black'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('circle', 'black'), (2, 5): ('circle', 'black'), (3, 0): ('square', 'white'), (3, 1): ('circle', 'white'), (3, 2): ('square', 'white'), (3, 3): ('square', 'black'), (3, 4): ('triangle', 'white'), (3, 5): ('circle', 'white'), (4, 0): ('square', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('circle', 'black'), (4, 3): ('square', 'black'), (4, 4): ('circle', 'black'), (4, 5): ('circle', 'black'), (5, 0): ('triangle', 'white'), (5, 1): ('triangle', 'black'), (5, 2): ('triangle', 'black'), (5, 3): ('circle', 'black'), (5, 4): ('square', 'white'), (5, 5): ('circle', 'white'), (6, 0): ('square', 'white'), (6, 1): ('square', 'white'), (6, 2): ('square', 'white'), (6, 3): ('triangle', 'black'), (6, 4): ('square', 'white'), (6, 5): ('circle', 'black'), (7, 0): ('square', 'black'), (7, 1): ('triangle', 'white'), (7, 2): ('triangle', 'white'), (7, 3): ('circle', 'black'), (7, 4): ('circle', 'white'), (7, 5): ('triangle', 'white'), (8, 0): ('square', 'white'), (8, 1): ('square', 'white'), (8, 2): ('square', 'black'), (8, 3): ('triangle', 'black'), (8, 4): ('triangle', 'black'), (8, 5): ('square', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('square', 'black'), (0, 4): ('square', 'black'), (0, 5): ('square', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('circle', 'black'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('square', 'white'), (2, 4): ('circle', 'black'), (2, 5): ('triangle', 'black'), (3, 0): ('triangle', 'white'), (3, 1): ('triangle', 'white'), (3, 2): ('square', 'white'), (3, 3): ('circle', 'black'), (3, 4): ('triangle', 'black'), (3, 5): ('square', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('circle', 'white'), (4, 2): ('triangle', 'black'), (4, 3): ('square', 'white'), (4, 4): ('triangle', 'black'), (4, 5): ('triangle', 'white'), (5, 0): ('triangle', 'white'), (5, 1): ('square', 'black'), (5, 2): ('triangle', 'white'), (5, 3): ('circle', 'white'), (5, 4): ('circle', 'black'), (5, 5): ('square', 'black'), (6, 0): ('triangle', 'black'), (6, 1): ('circle', 'black'), (6, 2): ('circle', 'white'), (6, 3): ('square', 'white'), (6, 4): ('triangle', 'white'), (6, 5): ('circle', 'white'), (7, 0): ('triangle', 'white'), (7, 1): ('triangle', 'white'), (7, 2): ('triangle', 'white'), (7, 3): ('triangle', 'black'), (7, 4): ('circle', 'black'), (7, 5): ('triangle', 'white'), (8, 0): ('triangle', 'black'), (8, 1): ('square', 'black'), (8, 2): ('triangle', 'white'), (8, 3): ('square', 'black'), (8, 4): ('circle', 'white'), (8, 5): ('square', 'white')}]","(9, 6, 3)"
+223.svg,"[{(0, 0): ('triangle', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('square', 'black'), (0, 4): ('square', 'white'), (0, 5): ('triangle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('circle', 'black'), (1, 3): ('circle', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('triangle', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('square', 'white'), (2, 3): ('circle', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('square', 'black'), (3, 0): ('circle', 'black'), (3, 1): ('circle', 'white'), (3, 2): ('square', 'white'), (3, 3): ('circle', 'white'), (3, 4): ('square', 'black'), (3, 5): ('triangle', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('square', 'black'), (4, 2): ('square', 'black'), (4, 3): ('circle', 'black'), (4, 4): ('circle', 'white'), (4, 5): ('circle', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('circle', 'black'), (5, 3): ('triangle', 'black'), (5, 4): ('triangle', 'white'), (5, 5): ('circle', 'white'), (6, 0): ('circle', 'black'), (6, 1): ('square', 'white'), (6, 2): ('triangle', 'black'), (6, 3): ('circle', 'black'), (6, 4): ('circle', 'white'), (6, 5): ('triangle', 'black'), (7, 0): ('triangle', 'black'), (7, 1): ('circle', 'black'), (7, 2): ('circle', 'white'), (7, 3): ('square', 'white'), (7, 4): ('triangle', 'black'), (7, 5): ('circle', 'black'), (8, 0): ('triangle', 'white'), (8, 1): ('circle', 'white'), (8, 2): ('square', 'white'), (8, 3): ('circle', 'black'), (8, 4): ('triangle', 'black'), (8, 5): ('circle', 'black')}, {(0, 0): ('triangle', 'black'), (0, 1): ('square', 'white'), (0, 2): ('square', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('circle', 'black'), (0, 5): ('square', 'black'), (1, 0): ('square', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'white'), (1, 3): ('triangle', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('square', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('circle', 'white'), (3, 0): ('triangle', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('square', 'white'), (3, 3): ('circle', 'white'), (3, 4): ('triangle', 'black'), (3, 5): ('circle', 'black'), (4, 0): ('square', 'white'), (4, 1): ('square', 'black'), (4, 2): ('triangle', 'white'), (4, 3): ('circle', 'white'), (4, 4): ('triangle', 'white'), (4, 5): ('square', 'black'), (5, 0): ('square', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('square', 'white'), (5, 3): ('square', 'white'), (5, 4): ('circle', 'black'), (5, 5): ('square', 'black'), (6, 0): ('circle', 'black'), (6, 1): ('triangle', 'black'), (6, 2): ('triangle', 'black'), (6, 3): ('square', 'black'), (6, 4): ('triangle', 'black'), (6, 5): ('square', 'black'), (7, 0): ('circle', 'white'), (7, 1): ('triangle', 'black'), (7, 2): ('triangle', 'white'), (7, 3): ('circle', 'black'), (7, 4): ('triangle', 'black'), (7, 5): ('triangle', 'white'), (8, 0): ('circle', 'black'), (8, 1): ('circle', 'white'), (8, 2): ('square', 'black'), (8, 3): ('triangle', 'white'), (8, 4): ('triangle', 'white'), (8, 5): ('triangle', 'black')}, {(0, 0): ('square', 'white'), (0, 1): ('square', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('triangle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('square', 'black'), (1, 5): ('triangle', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('square', 'black'), (2, 5): ('triangle', 'white'), (3, 0): ('circle', 'white'), (3, 1): ('circle', 'white'), (3, 2): ('square', 'white'), (3, 3): ('circle', 'white'), (3, 4): ('square', 'white'), (3, 5): ('triangle', 'white'), (4, 0): ('triangle', 'white'), (4, 1): ('square', 'black'), (4, 2): ('square', 'white'), (4, 3): ('triangle', 'white'), (4, 4): ('square', 'white'), (4, 5): ('circle', 'white'), (5, 0): ('triangle', 'black'), (5, 1): ('square', 'black'), (5, 2): ('triangle', 'white'), (5, 3): ('triangle', 'white'), (5, 4): ('triangle', 'black'), (5, 5): ('circle', 'black'), (6, 0): ('triangle', 'white'), (6, 1): ('circle', 'white'), (6, 2): ('triangle', 'white'), (6, 3): ('triangle', 'black'), (6, 4): ('triangle', 'white'), (6, 5): ('square', 'black'), (7, 0): ('triangle', 'white'), (7, 1): ('square', 'black'), (7, 2): ('square', 'white'), (7, 3): ('square', 'white'), (7, 4): ('circle', 'black'), (7, 5): ('square', 'white'), (8, 0): ('circle', 'white'), (8, 1): ('circle', 'white'), (8, 2): ('triangle', 'black'), (8, 3): ('circle', 'black'), (8, 4): ('triangle', 'white'), (8, 5): ('circle', 'black')}]","(9, 6, 3)"
+224.svg,"[{(0, 0): ('circle', 'black'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('square', 'white'), (0, 4): ('circle', 'black'), (0, 5): ('square', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('square', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('triangle', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('triangle', 'white'), (2, 4): ('circle', 'white'), (2, 5): ('circle', 'black'), (3, 0): ('circle', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('square', 'white'), (3, 3): ('square', 'white'), (3, 4): ('square', 'black'), (3, 5): ('triangle', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('circle', 'white'), (4, 2): ('circle', 'white'), (4, 3): ('circle', 'black'), (4, 4): ('square', 'white'), (4, 5): ('square', 'black'), (5, 0): ('square', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('square', 'black'), (5, 3): ('circle', 'black'), (5, 4): ('triangle', 'white'), (5, 5): ('triangle', 'white'), (6, 0): ('triangle', 'white'), (6, 1): ('triangle', 'black'), (6, 2): ('square', 'white'), (6, 3): ('square', 'black'), (6, 4): ('circle', 'black'), (6, 5): ('circle', 'black'), (7, 0): ('triangle', 'black'), (7, 1): ('triangle', 'white'), (7, 2): ('triangle', 'white'), (7, 3): ('square', 'white'), (7, 4): ('triangle', 'black'), (7, 5): ('square', 'white'), (8, 0): ('square', 'black'), (8, 1): ('circle', 'white'), (8, 2): ('triangle', 'white'), (8, 3): ('square', 'white'), (8, 4): ('triangle', 'white'), (8, 5): ('triangle', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('square', 'black'), (0, 5): ('circle', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('square', 'black'), (1, 3): ('square', 'black'), (1, 4): ('square', 'white'), (1, 5): ('circle', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('triangle', 'black'), (2, 3): ('circle', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('circle', 'white'), (3, 0): ('circle', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('square', 'black'), (3, 3): ('triangle', 'white'), (3, 4): ('circle', 'black'), (3, 5): ('square', 'black'), (4, 0): ('square', 'white'), (4, 1): ('square', 'black'), (4, 2): ('circle', 'black'), (4, 3): ('triangle', 'black'), (4, 4): ('circle', 'black'), (4, 5): ('triangle', 'white'), (5, 0): ('square', 'white'), (5, 1): ('triangle', 'black'), (5, 2): ('triangle', 'white'), (5, 3): ('square', 'white'), (5, 4): ('square', 'black'), (5, 5): ('triangle', 'black'), (6, 0): ('circle', 'black'), (6, 1): ('triangle', 'black'), (6, 2): ('circle', 'white'), (6, 3): ('circle', 'white'), (6, 4): ('triangle', 'black'), (6, 5): ('circle', 'white'), (7, 0): ('circle', 'black'), (7, 1): ('circle', 'black'), (7, 2): ('triangle', 'white'), (7, 3): ('circle', 'white'), (7, 4): ('triangle', 'white'), (7, 5): ('triangle', 'white'), (8, 0): ('triangle', 'black'), (8, 1): ('square', 'white'), (8, 2): ('square', 'white'), (8, 3): ('circle', 'white'), (8, 4): ('triangle', 'white'), (8, 5): ('circle', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('square', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('triangle', 'black'), (1, 5): ('square', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('circle', 'white'), (2, 3): ('triangle', 'white'), (2, 4): ('circle', 'black'), (2, 5): ('circle', 'black'), (3, 0): ('square', 'white'), (3, 1): ('triangle', 'black'), (3, 2): ('square', 'black'), (3, 3): ('circle', 'black'), (3, 4): ('circle', 'black'), (3, 5): ('triangle', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('square', 'white'), (4, 2): ('triangle', 'white'), (4, 3): ('square', 'white'), (4, 4): ('circle', 'black'), (4, 5): ('circle', 'white'), (5, 0): ('square', 'black'), (5, 1): ('square', 'white'), (5, 2): ('triangle', 'white'), (5, 3): ('circle', 'black'), (5, 4): ('circle', 'white'), (5, 5): ('square', 'black'), (6, 0): ('square', 'black'), (6, 1): ('square', 'white'), (6, 2): ('square', 'black'), (6, 3): ('square', 'white'), (6, 4): ('triangle', 'white'), (6, 5): ('circle', 'white'), (7, 0): ('square', 'black'), (7, 1): ('triangle', 'white'), (7, 2): ('circle', 'white'), (7, 3): ('square', 'black'), (7, 4): ('circle', 'white'), (7, 5): ('circle', 'black'), (8, 0): ('triangle', 'black'), (8, 1): ('triangle', 'white'), (8, 2): ('circle', 'black'), (8, 3): ('square', 'black'), (8, 4): ('square', 'black'), (8, 5): ('square', 'black')}]","(9, 6, 3)"
+225.svg,"[{(0, 0): ('triangle', 'black'), (0, 1): ('square', 'black'), (0, 2): ('square', 'white'), (0, 3): ('circle', 'white'), (0, 4): ('triangle', 'white'), (0, 5): ('square', 'white'), (1, 0): ('square', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('square', 'black'), (1, 3): ('triangle', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('square', 'white'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('square', 'white'), (2, 3): ('triangle', 'white'), (2, 4): ('triangle', 'white'), (2, 5): ('triangle', 'black'), (3, 0): ('square', 'black'), (3, 1): ('triangle', 'black'), (3, 2): ('square', 'white'), (3, 3): ('square', 'black'), (3, 4): ('triangle', 'black'), (3, 5): ('triangle', 'black'), (4, 0): ('square', 'black'), (4, 1): ('circle', 'white'), (4, 2): ('square', 'white'), (4, 3): ('circle', 'white'), (4, 4): ('circle', 'white'), (4, 5): ('circle', 'white'), (5, 0): ('circle', 'white'), (5, 1): ('triangle', 'black'), (5, 2): ('square', 'black'), (5, 3): ('triangle', 'white'), (5, 4): ('square', 'white'), (5, 5): ('triangle', 'white'), (6, 0): ('square', 'white'), (6, 1): ('triangle', 'white'), (6, 2): ('triangle', 'white'), (6, 3): ('circle', 'white'), (6, 4): ('triangle', 'white'), (6, 5): ('circle', 'black'), (7, 0): ('square', 'black'), (7, 1): ('square', 'white'), (7, 2): ('square', 'black'), (7, 3): ('triangle', 'white'), (7, 4): ('square', 'white'), (7, 5): ('circle', 'black'), (8, 0): ('triangle', 'white'), (8, 1): ('circle', 'black'), (8, 2): ('triangle', 'white'), (8, 3): ('triangle', 'white'), (8, 4): ('circle', 'white'), (8, 5): ('square', 'white')}, {(0, 0): ('circle', 'black'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('triangle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('triangle', 'black'), (1, 3): ('square', 'white'), (1, 4): ('triangle', 'white'), (1, 5): ('square', 'white'), (2, 0): ('square', 'black'), (2, 1): ('square', 'white'), (2, 2): ('square', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('circle', 'black'), (2, 5): ('circle', 'black'), (3, 0): ('square', 'white'), (3, 1): ('circle', 'white'), (3, 2): ('square', 'black'), (3, 3): ('circle', 'black'), (3, 4): ('circle', 'white'), (3, 5): ('circle', 'black'), (4, 0): ('circle', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('triangle', 'black'), (4, 3): ('square', 'black'), (4, 4): ('circle', 'black'), (4, 5): ('square', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('triangle', 'white'), (5, 2): ('triangle', 'white'), (5, 3): ('square', 'white'), (5, 4): ('triangle', 'white'), (5, 5): ('triangle', 'black'), (6, 0): ('square', 'black'), (6, 1): ('triangle', 'white'), (6, 2): ('square', 'white'), (6, 3): ('triangle', 'black'), (6, 4): ('circle', 'black'), (6, 5): ('square', 'black'), (7, 0): ('triangle', 'white'), (7, 1): ('square', 'white'), (7, 2): ('circle', 'black'), (7, 3): ('circle', 'white'), (7, 4): ('circle', 'black'), (7, 5): ('square', 'black'), (8, 0): ('circle', 'black'), (8, 1): ('triangle', 'white'), (8, 2): ('circle', 'black'), (8, 3): ('square', 'black'), (8, 4): ('circle', 'white'), (8, 5): ('triangle', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('square', 'white'), (0, 2): ('triangle', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('triangle', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('triangle', 'black'), (1, 5): ('triangle', 'black'), (2, 0): ('square', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('circle', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('triangle', 'white'), (2, 5): ('square', 'black'), (3, 0): ('triangle', 'white'), (3, 1): ('square', 'white'), (3, 2): ('triangle', 'white'), (3, 3): ('triangle', 'black'), (3, 4): ('square', 'white'), (3, 5): ('triangle', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('square', 'white'), (4, 2): ('square', 'black'), (4, 3): ('circle', 'black'), (4, 4): ('square', 'black'), (4, 5): ('circle', 'white'), (5, 0): ('triangle', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('triangle', 'black'), (5, 3): ('square', 'white'), (5, 4): ('triangle', 'black'), (5, 5): ('triangle', 'black'), (6, 0): ('circle', 'white'), (6, 1): ('square', 'black'), (6, 2): ('square', 'black'), (6, 3): ('triangle', 'white'), (6, 4): ('square', 'white'), (6, 5): ('triangle', 'black'), (7, 0): ('square', 'white'), (7, 1): ('square', 'white'), (7, 2): ('square', 'black'), (7, 3): ('square', 'black'), (7, 4): ('circle', 'black'), (7, 5): ('triangle', 'white'), (8, 0): ('circle', 'black'), (8, 1): ('triangle', 'black'), (8, 2): ('circle', 'black'), (8, 3): ('triangle', 'white'), (8, 4): ('circle', 'black'), (8, 5): ('square', 'white')}]","(9, 6, 3)"
+226.svg,"[{(0, 0): ('triangle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'white'), (0, 3): ('triangle', 'white'), (0, 4): ('circle', 'black'), (0, 5): ('square', 'white'), (1, 0): ('triangle', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('square', 'white'), (1, 3): ('square', 'white'), (1, 4): ('triangle', 'black'), (1, 5): ('square', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('square', 'white'), (2, 4): ('circle', 'white'), (2, 5): ('triangle', 'white'), (3, 0): ('triangle', 'black'), (3, 1): ('square', 'white'), (3, 2): ('circle', 'black'), (3, 3): ('circle', 'black'), (3, 4): ('square', 'black'), (3, 5): ('triangle', 'white'), (4, 0): ('square', 'white'), (4, 1): ('square', 'white'), (4, 2): ('triangle', 'white'), (4, 3): ('square', 'white'), (4, 4): ('circle', 'black'), (4, 5): ('circle', 'white'), (5, 0): ('square', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('circle', 'white'), (5, 3): ('circle', 'white'), (5, 4): ('triangle', 'black'), (5, 5): ('square', 'white'), (6, 0): ('square', 'white'), (6, 1): ('triangle', 'black'), (6, 2): ('square', 'white'), (6, 3): ('triangle', 'black'), (6, 4): ('circle', 'black'), (6, 5): ('square', 'black'), (7, 0): ('square', 'black'), (7, 1): ('circle', 'white'), (7, 2): ('circle', 'white'), (7, 3): ('triangle', 'black'), (7, 4): ('triangle', 'white'), (7, 5): ('circle', 'black'), (8, 0): ('triangle', 'white'), (8, 1): ('triangle', 'white'), (8, 2): ('square', 'white'), (8, 3): ('triangle', 'black'), (8, 4): ('circle', 'black'), (8, 5): ('circle', 'black')}, {(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('square', 'black'), (0, 3): ('circle', 'white'), (0, 4): ('circle', 'black'), (0, 5): ('square', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('square', 'black'), (1, 4): ('square', 'black'), (1, 5): ('circle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('circle', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('square', 'black'), (2, 5): ('circle', 'black'), (3, 0): ('circle', 'white'), (3, 1): ('triangle', 'white'), (3, 2): ('square', 'black'), (3, 3): ('circle', 'black'), (3, 4): ('triangle', 'black'), (3, 5): ('square', 'white'), (4, 0): ('triangle', 'white'), (4, 1): ('circle', 'black'), (4, 2): ('square', 'white'), (4, 3): ('triangle', 'black'), (4, 4): ('square', 'white'), (4, 5): ('circle', 'white'), (5, 0): ('triangle', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('triangle', 'black'), (5, 3): ('circle', 'white'), (5, 4): ('square', 'black'), (5, 5): ('triangle', 'white'), (6, 0): ('square', 'white'), (6, 1): ('circle', 'white'), (6, 2): ('triangle', 'black'), (6, 3): ('circle', 'black'), (6, 4): ('square', 'white'), (6, 5): ('square', 'black'), (7, 0): ('square', 'black'), (7, 1): ('triangle', 'white'), (7, 2): ('circle', 'white'), (7, 3): ('square', 'white'), (7, 4): ('circle', 'black'), (7, 5): ('circle', 'white'), (8, 0): ('circle', 'white'), (8, 1): ('circle', 'white'), (8, 2): ('triangle', 'white'), (8, 3): ('circle', 'white'), (8, 4): ('triangle', 'black'), (8, 5): ('square', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('triangle', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('triangle', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('triangle', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('square', 'black'), (2, 4): ('circle', 'black'), (2, 5): ('circle', 'black'), (3, 0): ('square', 'white'), (3, 1): ('circle', 'white'), (3, 2): ('triangle', 'white'), (3, 3): ('circle', 'white'), (3, 4): ('square', 'white'), (3, 5): ('triangle', 'black'), (4, 0): ('circle', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('square', 'white'), (4, 3): ('triangle', 'white'), (4, 4): ('circle', 'black'), (4, 5): ('square', 'white'), (5, 0): ('triangle', 'white'), (5, 1): ('square', 'white'), (5, 2): ('square', 'white'), (5, 3): ('triangle', 'black'), (5, 4): ('triangle', 'black'), (5, 5): ('circle', 'white'), (6, 0): ('square', 'black'), (6, 1): ('circle', 'black'), (6, 2): ('square', 'black'), (6, 3): ('square', 'black'), (6, 4): ('square', 'black'), (6, 5): ('circle', 'black'), (7, 0): ('triangle', 'black'), (7, 1): ('square', 'white'), (7, 2): ('square', 'white'), (7, 3): ('circle', 'white'), (7, 4): ('circle', 'white'), (7, 5): ('square', 'white'), (8, 0): ('square', 'black'), (8, 1): ('circle', 'white'), (8, 2): ('circle', 'white'), (8, 3): ('triangle', 'white'), (8, 4): ('triangle', 'white'), (8, 5): ('square', 'white')}]","(9, 6, 3)"
+227.svg,"[{(0, 0): ('triangle', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('circle', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('circle', 'black'), (1, 3): ('square', 'black'), (1, 4): ('circle', 'black'), (1, 5): ('triangle', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('circle', 'white'), (2, 3): ('circle', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('triangle', 'black'), (3, 0): ('square', 'white'), (3, 1): ('triangle', 'white'), (3, 2): ('triangle', 'black'), (3, 3): ('square', 'black'), (3, 4): ('square', 'black'), (3, 5): ('square', 'black'), (4, 0): ('square', 'white'), (4, 1): ('circle', 'black'), (4, 2): ('square', 'white'), (4, 3): ('triangle', 'white'), (4, 4): ('circle', 'black'), (4, 5): ('square', 'black'), (5, 0): ('circle', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('triangle', 'white'), (5, 3): ('circle', 'white'), (5, 4): ('circle', 'white'), (5, 5): ('square', 'white'), (6, 0): ('triangle', 'black'), (6, 1): ('triangle', 'white'), (6, 2): ('square', 'black'), (6, 3): ('circle', 'white'), (6, 4): ('square', 'white'), (6, 5): ('circle', 'black'), (7, 0): ('triangle', 'white'), (7, 1): ('square', 'black'), (7, 2): ('square', 'black'), (7, 3): ('square', 'white'), (7, 4): ('circle', 'black'), (7, 5): ('square', 'black'), (8, 0): ('circle', 'white'), (8, 1): ('circle', 'white'), (8, 2): ('triangle', 'white'), (8, 3): ('triangle', 'white'), (8, 4): ('circle', 'black'), (8, 5): ('square', 'black')}, {(0, 0): ('triangle', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('square', 'black'), (0, 5): ('triangle', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('square', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('triangle', 'black'), (1, 5): ('square', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('circle', 'white'), (2, 3): ('circle', 'white'), (2, 4): ('square', 'white'), (2, 5): ('triangle', 'white'), (3, 0): ('circle', 'white'), (3, 1): ('square', 'white'), (3, 2): ('circle', 'black'), (3, 3): ('square', 'white'), (3, 4): ('square', 'white'), (3, 5): ('square', 'white'), (4, 0): ('square', 'white'), (4, 1): ('square', 'white'), (4, 2): ('square', 'black'), (4, 3): ('circle', 'white'), (4, 4): ('circle', 'white'), (4, 5): ('triangle', 'black'), (5, 0): ('square', 'black'), (5, 1): ('triangle', 'black'), (5, 2): ('circle', 'black'), (5, 3): ('triangle', 'black'), (5, 4): ('square', 'white'), (5, 5): ('square', 'white'), (6, 0): ('square', 'white'), (6, 1): ('triangle', 'black'), (6, 2): ('square', 'black'), (6, 3): ('square', 'black'), (6, 4): ('triangle', 'white'), (6, 5): ('square', 'black'), (7, 0): ('triangle', 'white'), (7, 1): ('square', 'black'), (7, 2): ('square', 'black'), (7, 3): ('square', 'black'), (7, 4): ('square', 'white'), (7, 5): ('circle', 'white'), (8, 0): ('square', 'white'), (8, 1): ('square', 'black'), (8, 2): ('triangle', 'black'), (8, 3): ('circle', 'white'), (8, 4): ('triangle', 'white'), (8, 5): ('triangle', 'black')}, {(0, 0): ('square', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('square', 'white'), (0, 4): ('triangle', 'white'), (0, 5): ('triangle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('square', 'white'), (1, 5): ('triangle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('triangle', 'white'), (2, 3): ('circle', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('circle', 'white'), (3, 0): ('triangle', 'white'), (3, 1): ('square', 'black'), (3, 2): ('square', 'white'), (3, 3): ('circle', 'black'), (3, 4): ('circle', 'black'), (3, 5): ('square', 'white'), (4, 0): ('circle', 'black'), (4, 1): ('square', 'black'), (4, 2): ('circle', 'white'), (4, 3): ('circle', 'black'), (4, 4): ('square', 'black'), (4, 5): ('square', 'black'), (5, 0): ('circle', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('circle', 'black'), (5, 3): ('circle', 'white'), (5, 4): ('circle', 'black'), (5, 5): ('triangle', 'white'), (6, 0): ('triangle', 'white'), (6, 1): ('triangle', 'black'), (6, 2): ('circle', 'black'), (6, 3): ('circle', 'white'), (6, 4): ('triangle', 'black'), (6, 5): ('circle', 'white'), (7, 0): ('square', 'white'), (7, 1): ('square', 'black'), (7, 2): ('circle', 'white'), (7, 3): ('square', 'white'), (7, 4): ('triangle', 'black'), (7, 5): ('circle', 'white'), (8, 0): ('circle', 'black'), (8, 1): ('circle', 'black'), (8, 2): ('square', 'white'), (8, 3): ('triangle', 'white'), (8, 4): ('triangle', 'white'), (8, 5): ('triangle', 'black')}]","(9, 6, 3)"
+228.svg,"[{(0, 0): ('square', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('circle', 'white'), (0, 4): ('square', 'white'), (0, 5): ('triangle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'black'), (1, 3): ('square', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('circle', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('circle', 'black'), (2, 3): ('square', 'white'), (2, 4): ('circle', 'white'), (2, 5): ('triangle', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('circle', 'white'), (3, 2): ('circle', 'black'), (3, 3): ('triangle', 'white'), (3, 4): ('circle', 'white'), (3, 5): ('square', 'black'), (4, 0): ('square', 'black'), (4, 1): ('square', 'black'), (4, 2): ('square', 'white'), (4, 3): ('square', 'white'), (4, 4): ('circle', 'black'), (4, 5): ('circle', 'white'), (5, 0): ('triangle', 'black'), (5, 1): ('square', 'white'), (5, 2): ('triangle', 'black'), (5, 3): ('square', 'white'), (5, 4): ('square', 'white'), (5, 5): ('triangle', 'black'), (6, 0): ('triangle', 'black'), (6, 1): ('square', 'white'), (6, 2): ('triangle', 'black'), (6, 3): ('triangle', 'white'), (6, 4): ('circle', 'black'), (6, 5): ('triangle', 'white'), (7, 0): ('triangle', 'white'), (7, 1): ('circle', 'black'), (7, 2): ('circle', 'black'), (7, 3): ('square', 'black'), (7, 4): ('circle', 'white'), (7, 5): ('circle', 'black'), (8, 0): ('square', 'black'), (8, 1): ('circle', 'black'), (8, 2): ('triangle', 'white'), (8, 3): ('square', 'white'), (8, 4): ('circle', 'white'), (8, 5): ('triangle', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('triangle', 'white'), (0, 4): ('circle', 'white'), (0, 5): ('square', 'white'), (1, 0): ('square', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('square', 'black'), (1, 5): ('square', 'white'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('square', 'black'), (2, 3): ('triangle', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('square', 'black'), (3, 0): ('square', 'black'), (3, 1): ('triangle', 'black'), (3, 2): ('triangle', 'white'), (3, 3): ('square', 'white'), (3, 4): ('square', 'white'), (3, 5): ('square', 'white'), (4, 0): ('circle', 'white'), (4, 1): ('triangle', 'black'), (4, 2): ('triangle', 'white'), (4, 3): ('circle', 'white'), (4, 4): ('triangle', 'black'), (4, 5): ('circle', 'white'), (5, 0): ('square', 'white'), (5, 1): ('triangle', 'white'), (5, 2): ('triangle', 'white'), (5, 3): ('circle', 'white'), (5, 4): ('triangle', 'white'), (5, 5): ('triangle', 'white'), (6, 0): ('circle', 'white'), (6, 1): ('triangle', 'white'), (6, 2): ('circle', 'white'), (6, 3): ('triangle', 'black'), (6, 4): ('square', 'white'), (6, 5): ('square', 'white'), (7, 0): ('square', 'black'), (7, 1): ('square', 'white'), (7, 2): ('triangle', 'white'), (7, 3): ('square', 'white'), (7, 4): ('circle', 'black'), (7, 5): ('circle', 'white'), (8, 0): ('circle', 'white'), (8, 1): ('triangle', 'white'), (8, 2): ('triangle', 'white'), (8, 3): ('triangle', 'black'), (8, 4): ('triangle', 'white'), (8, 5): ('triangle', 'black')}, {(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('triangle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('square', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('triangle', 'black'), (1, 5): ('square', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('circle', 'white'), (2, 3): ('triangle', 'white'), (2, 4): ('square', 'black'), (2, 5): ('triangle', 'black'), (3, 0): ('square', 'black'), (3, 1): ('circle', 'white'), (3, 2): ('circle', 'black'), (3, 3): ('circle', 'black'), (3, 4): ('circle', 'white'), (3, 5): ('triangle', 'white'), (4, 0): ('triangle', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('circle', 'black'), (4, 3): ('triangle', 'white'), (4, 4): ('circle', 'black'), (4, 5): ('triangle', 'black'), (5, 0): ('square', 'black'), (5, 1): ('square', 'white'), (5, 2): ('square', 'black'), (5, 3): ('square', 'white'), (5, 4): ('circle', 'white'), (5, 5): ('square', 'black'), (6, 0): ('triangle', 'black'), (6, 1): ('circle', 'black'), (6, 2): ('square', 'black'), (6, 3): ('circle', 'white'), (6, 4): ('circle', 'black'), (6, 5): ('circle', 'white'), (7, 0): ('square', 'white'), (7, 1): ('circle', 'black'), (7, 2): ('triangle', 'black'), (7, 3): ('circle', 'white'), (7, 4): ('circle', 'white'), (7, 5): ('circle', 'black'), (8, 0): ('triangle', 'black'), (8, 1): ('circle', 'black'), (8, 2): ('square', 'black'), (8, 3): ('circle', 'black'), (8, 4): ('circle', 'black'), (8, 5): ('circle', 'black')}]","(9, 6, 3)"
+229.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'white'), (0, 3): ('triangle', 'white'), (0, 4): ('triangle', 'white'), (0, 5): ('circle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('square', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('triangle', 'white'), (1, 5): ('square', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('square', 'white'), (2, 3): ('square', 'white'), (2, 4): ('square', 'black'), (2, 5): ('square', 'black'), (3, 0): ('circle', 'black'), (3, 1): ('square', 'black'), (3, 2): ('square', 'white'), (3, 3): ('circle', 'black'), (3, 4): ('circle', 'black'), (3, 5): ('square', 'white'), (4, 0): ('circle', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('square', 'black'), (4, 3): ('square', 'white'), (4, 4): ('square', 'white'), (4, 5): ('square', 'white'), (5, 0): ('triangle', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('square', 'black'), (5, 3): ('circle', 'white'), (5, 4): ('square', 'white'), (5, 5): ('circle', 'black'), (6, 0): ('circle', 'white'), (6, 1): ('square', 'black'), (6, 2): ('triangle', 'white'), (6, 3): ('triangle', 'black'), (6, 4): ('circle', 'white'), (6, 5): ('circle', 'black'), (7, 0): ('square', 'white'), (7, 1): ('triangle', 'white'), (7, 2): ('triangle', 'black'), (7, 3): ('circle', 'black'), (7, 4): ('circle', 'white'), (7, 5): ('square', 'white'), (8, 0): ('triangle', 'black'), (8, 1): ('triangle', 'white'), (8, 2): ('triangle', 'white'), (8, 3): ('circle', 'white'), (8, 4): ('triangle', 'white'), (8, 5): ('circle', 'white')}, {(0, 0): ('circle', 'black'), (0, 1): ('square', 'white'), (0, 2): ('triangle', 'black'), (0, 3): ('circle', 'white'), (0, 4): ('triangle', 'black'), (0, 5): ('square', 'black'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('square', 'black'), (1, 5): ('triangle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('triangle', 'black'), (2, 4): ('circle', 'black'), (2, 5): ('square', 'white'), (3, 0): ('square', 'white'), (3, 1): ('triangle', 'white'), (3, 2): ('circle', 'black'), (3, 3): ('square', 'white'), (3, 4): ('triangle', 'black'), (3, 5): ('triangle', 'black'), (4, 0): ('triangle', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('triangle', 'white'), (4, 3): ('square', 'black'), (4, 4): ('square', 'black'), (4, 5): ('triangle', 'black'), (5, 0): ('square', 'white'), (5, 1): ('square', 'white'), (5, 2): ('triangle', 'black'), (5, 3): ('square', 'white'), (5, 4): ('circle', 'white'), (5, 5): ('circle', 'white'), (6, 0): ('circle', 'black'), (6, 1): ('triangle', 'black'), (6, 2): ('triangle', 'black'), (6, 3): ('triangle', 'white'), (6, 4): ('square', 'black'), (6, 5): ('triangle', 'white'), (7, 0): ('triangle', 'black'), (7, 1): ('triangle', 'black'), (7, 2): ('triangle', 'black'), (7, 3): ('circle', 'black'), (7, 4): ('square', 'white'), (7, 5): ('square', 'black'), (8, 0): ('triangle', 'white'), (8, 1): ('triangle', 'black'), (8, 2): ('triangle', 'black'), (8, 3): ('circle', 'black'), (8, 4): ('circle', 'black'), (8, 5): ('square', 'black')}, {(0, 0): ('triangle', 'black'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('square', 'white'), (0, 4): ('triangle', 'white'), (0, 5): ('circle', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('square', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('triangle', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('circle', 'black'), (2, 4): ('circle', 'black'), (2, 5): ('triangle', 'white'), (3, 0): ('square', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('circle', 'black'), (3, 3): ('triangle', 'white'), (3, 4): ('square', 'white'), (3, 5): ('square', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('square', 'white'), (4, 2): ('circle', 'black'), (4, 3): ('triangle', 'black'), (4, 4): ('square', 'white'), (4, 5): ('triangle', 'white'), (5, 0): ('square', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('triangle', 'white'), (5, 3): ('circle', 'white'), (5, 4): ('circle', 'black'), (5, 5): ('square', 'black'), (6, 0): ('triangle', 'black'), (6, 1): ('square', 'black'), (6, 2): ('square', 'white'), (6, 3): ('square', 'black'), (6, 4): ('square', 'white'), (6, 5): ('triangle', 'black'), (7, 0): ('circle', 'black'), (7, 1): ('circle', 'black'), (7, 2): ('triangle', 'black'), (7, 3): ('circle', 'black'), (7, 4): ('triangle', 'black'), (7, 5): ('square', 'black'), (8, 0): ('circle', 'white'), (8, 1): ('triangle', 'black'), (8, 2): ('square', 'white'), (8, 3): ('circle', 'white'), (8, 4): ('square', 'black'), (8, 5): ('triangle', 'black')}]","(9, 6, 3)"
+230.svg,"[{(0, 0): ('circle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('square', 'black'), (0, 3): ('square', 'white'), (0, 4): ('triangle', 'white'), (0, 5): ('circle', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('square', 'black'), (1, 2): ('square', 'white'), (1, 3): ('square', 'white'), (1, 4): ('triangle', 'black'), (1, 5): ('square', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('square', 'black'), (2, 2): ('triangle', 'black'), (2, 3): ('triangle', 'black'), (2, 4): ('circle', 'white'), (2, 5): ('circle', 'white'), (3, 0): ('square', 'black'), (3, 1): ('triangle', 'black'), (3, 2): ('square', 'black'), (3, 3): ('square', 'white'), (3, 4): ('circle', 'black'), (3, 5): ('square', 'black'), (4, 0): ('circle', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('circle', 'black'), (4, 3): ('square', 'white'), (4, 4): ('circle', 'black'), (4, 5): ('circle', 'black'), (5, 0): ('triangle', 'black'), (5, 1): ('square', 'white'), (5, 2): ('square', 'black'), (5, 3): ('circle', 'black'), (5, 4): ('triangle', 'white'), (5, 5): ('triangle', 'white'), (6, 0): ('triangle', 'white'), (6, 1): ('triangle', 'black'), (6, 2): ('square', 'white'), (6, 3): ('circle', 'black'), (6, 4): ('circle', 'white'), (6, 5): ('square', 'white'), (7, 0): ('square', 'black'), (7, 1): ('circle', 'black'), (7, 2): ('triangle', 'black'), (7, 3): ('circle', 'black'), (7, 4): ('circle', 'black'), (7, 5): ('circle', 'black'), (8, 0): ('circle', 'white'), (8, 1): ('square', 'white'), (8, 2): ('triangle', 'black'), (8, 3): ('triangle', 'white'), (8, 4): ('circle', 'white'), (8, 5): ('circle', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('square', 'white'), (0, 3): ('triangle', 'white'), (0, 4): ('circle', 'white'), (0, 5): ('triangle', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('triangle', 'white'), (1, 5): ('square', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('circle', 'white'), (2, 3): ('triangle', 'white'), (2, 4): ('square', 'black'), (2, 5): ('square', 'white'), (3, 0): ('square', 'white'), (3, 1): ('circle', 'white'), (3, 2): ('square', 'white'), (3, 3): ('circle', 'black'), (3, 4): ('triangle', 'white'), (3, 5): ('triangle', 'white'), (4, 0): ('circle', 'white'), (4, 1): ('square', 'white'), (4, 2): ('triangle', 'white'), (4, 3): ('square', 'white'), (4, 4): ('square', 'white'), (4, 5): ('triangle', 'white'), (5, 0): ('triangle', 'white'), (5, 1): ('triangle', 'white'), (5, 2): ('triangle', 'black'), (5, 3): ('triangle', 'white'), (5, 4): ('circle', 'black'), (5, 5): ('circle', 'white'), (6, 0): ('triangle', 'black'), (6, 1): ('triangle', 'white'), (6, 2): ('triangle', 'white'), (6, 3): ('square', 'white'), (6, 4): ('square', 'white'), (6, 5): ('square', 'black'), (7, 0): ('circle', 'black'), (7, 1): ('square', 'white'), (7, 2): ('triangle', 'white'), (7, 3): ('square', 'white'), (7, 4): ('circle', 'white'), (7, 5): ('triangle', 'black'), (8, 0): ('square', 'white'), (8, 1): ('square', 'black'), (8, 2): ('square', 'white'), (8, 3): ('square', 'black'), (8, 4): ('circle', 'white'), (8, 5): ('square', 'black')}, {(0, 0): ('circle', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('circle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('square', 'white'), (1, 4): ('triangle', 'white'), (1, 5): ('square', 'white'), (2, 0): ('square', 'black'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('circle', 'white'), (2, 5): ('triangle', 'black'), (3, 0): ('circle', 'white'), (3, 1): ('triangle', 'white'), (3, 2): ('circle', 'black'), (3, 3): ('square', 'white'), (3, 4): ('triangle', 'white'), (3, 5): ('circle', 'black'), (4, 0): ('triangle', 'white'), (4, 1): ('square', 'white'), (4, 2): ('circle', 'white'), (4, 3): ('triangle', 'white'), (4, 4): ('circle', 'black'), (4, 5): ('triangle', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('square', 'white'), (5, 2): ('triangle', 'white'), (5, 3): ('triangle', 'black'), (5, 4): ('triangle', 'black'), (5, 5): ('square', 'white'), (6, 0): ('square', 'white'), (6, 1): ('triangle', 'white'), (6, 2): ('square', 'white'), (6, 3): ('triangle', 'white'), (6, 4): ('circle', 'white'), (6, 5): ('square', 'black'), (7, 0): ('square', 'black'), (7, 1): ('square', 'white'), (7, 2): ('square', 'black'), (7, 3): ('square', 'black'), (7, 4): ('square', 'white'), (7, 5): ('circle', 'black'), (8, 0): ('triangle', 'white'), (8, 1): ('circle', 'white'), (8, 2): ('square', 'black'), (8, 3): ('circle', 'white'), (8, 4): ('circle', 'white'), (8, 5): ('circle', 'white')}, {(0, 0): ('circle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('triangle', 'white'), (0, 4): ('triangle', 'white'), (0, 5): ('square', 'black'), (1, 0): ('square', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'black'), (1, 3): ('triangle', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('triangle', 'black'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('square', 'white'), (2, 3): ('circle', 'black'), (2, 4): ('triangle', 'white'), (2, 5): ('circle', 'white'), (3, 0): ('circle', 'white'), (3, 1): ('triangle', 'black'), (3, 2): ('square', 'black'), (3, 3): ('circle', 'white'), (3, 4): ('circle', 'black'), (3, 5): ('circle', 'black'), (4, 0): ('square', 'white'), (4, 1): ('square', 'black'), (4, 2): ('square', 'white'), (4, 3): ('triangle', 'black'), (4, 4): ('circle', 'white'), (4, 5): ('triangle', 'white'), (5, 0): ('square', 'black'), (5, 1): ('square', 'black'), (5, 2): ('circle', 'black'), (5, 3): ('triangle', 'black'), (5, 4): ('circle', 'white'), (5, 5): ('square', 'white'), (6, 0): ('square', 'black'), (6, 1): ('square', 'black'), (6, 2): ('circle', 'white'), (6, 3): ('circle', 'black'), (6, 4): ('square', 'white'), (6, 5): ('triangle', 'white'), (7, 0): ('circle', 'white'), (7, 1): ('square', 'white'), (7, 2): ('triangle', 'black'), (7, 3): ('circle', 'black'), (7, 4): ('circle', 'white'), (7, 5): ('triangle', 'black'), (8, 0): ('triangle', 'white'), (8, 1): ('circle', 'white'), (8, 2): ('triangle', 'black'), (8, 3): ('square', 'black'), (8, 4): ('circle', 'white'), (8, 5): ('triangle', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('square', 'black'), (0, 3): ('square', 'black'), (0, 4): ('square', 'white'), (0, 5): ('circle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('square', 'black'), (1, 2): ('square', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('square', 'white'), (1, 5): ('square', 'white'), (2, 0): ('square', 'white'), (2, 1): ('square', 'white'), (2, 2): ('square', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('triangle', 'white'), (2, 5): ('square', 'white'), (3, 0): ('square', 'white'), (3, 1): ('triangle', 'white'), (3, 2): ('triangle', 'black'), (3, 3): ('square', 'white'), (3, 4): ('circle', 'white'), (3, 5): ('circle', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('triangle', 'black'), (4, 2): ('circle', 'white'), (4, 3): ('circle', 'white'), (4, 4): ('triangle', 'black'), (4, 5): ('square', 'black'), (5, 0): ('triangle', 'white'), (5, 1): ('square', 'white'), (5, 2): ('triangle', 'black'), (5, 3): ('triangle', 'white'), (5, 4): ('circle', 'white'), (5, 5): ('triangle', 'white'), (6, 0): ('square', 'white'), (6, 1): ('triangle', 'white'), (6, 2): ('circle', 'black'), (6, 3): ('triangle', 'white'), (6, 4): ('square', 'black'), (6, 5): ('square', 'black'), (7, 0): ('circle', 'white'), (7, 1): ('square', 'white'), (7, 2): ('square', 'white'), (7, 3): ('square', 'white'), (7, 4): ('circle', 'white'), (7, 5): ('circle', 'white'), (8, 0): ('circle', 'black'), (8, 1): ('circle', 'black'), (8, 2): ('triangle', 'black'), (8, 3): ('square', 'black'), (8, 4): ('triangle', 'black'), (8, 5): ('square', 'black')}]","(9, 6, 5)"
+231.svg,"[{(0, 0): ('square', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('triangle', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('square', 'white'), (0, 5): ('triangle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('square', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('square', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('circle', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('square', 'black'), (2, 2): ('triangle', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('circle', 'black'), (2, 5): ('triangle', 'white'), (3, 0): ('circle', 'black'), (3, 1): ('circle', 'white'), (3, 2): ('triangle', 'white'), (3, 3): ('square', 'black'), (3, 4): ('square', 'white'), (3, 5): ('triangle', 'black'), (4, 0): ('triangle', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('circle', 'black'), (4, 3): ('square', 'black'), (4, 4): ('square', 'black'), (4, 5): ('square', 'white'), (5, 0): ('triangle', 'white'), (5, 1): ('triangle', 'white'), (5, 2): ('circle', 'white'), (5, 3): ('circle', 'black'), (5, 4): ('circle', 'black'), (5, 5): ('square', 'white'), (6, 0): ('square', 'white'), (6, 1): ('circle', 'black'), (6, 2): ('triangle', 'white'), (6, 3): ('square', 'black'), (6, 4): ('square', 'white'), (6, 5): ('triangle', 'white'), (7, 0): ('triangle', 'white'), (7, 1): ('circle', 'white'), (7, 2): ('square', 'white'), (7, 3): ('triangle', 'black'), (7, 4): ('circle', 'black'), (7, 5): ('circle', 'white'), (8, 0): ('triangle', 'black'), (8, 1): ('circle', 'black'), (8, 2): ('square', 'white'), (8, 3): ('square', 'black'), (8, 4): ('triangle', 'black'), (8, 5): ('triangle', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('circle', 'white'), (0, 3): ('square', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('circle', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('square', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('circle', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('triangle', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('square', 'white'), (2, 5): ('square', 'white'), (3, 0): ('square', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('triangle', 'black'), (3, 3): ('square', 'black'), (3, 4): ('circle', 'black'), (3, 5): ('square', 'white'), (4, 0): ('circle', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('square', 'white'), (4, 3): ('square', 'white'), (4, 4): ('triangle', 'black'), (4, 5): ('circle', 'black'), (5, 0): ('circle', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('triangle', 'white'), (5, 3): ('square', 'black'), (5, 4): ('triangle', 'black'), (5, 5): ('square', 'black'), (6, 0): ('triangle', 'black'), (6, 1): ('square', 'black'), (6, 2): ('circle', 'white'), (6, 3): ('circle', 'black'), (6, 4): ('square', 'black'), (6, 5): ('triangle', 'black'), (7, 0): ('square', 'black'), (7, 1): ('circle', 'white'), (7, 2): ('square', 'black'), (7, 3): ('square', 'black'), (7, 4): ('triangle', 'white'), (7, 5): ('square', 'white'), (8, 0): ('square', 'black'), (8, 1): ('triangle', 'black'), (8, 2): ('circle', 'black'), (8, 3): ('circle', 'black'), (8, 4): ('triangle', 'white'), (8, 5): ('square', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('square', 'black'), (0, 4): ('square', 'white'), (0, 5): ('square', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('square', 'black'), (1, 3): ('square', 'white'), (1, 4): ('square', 'white'), (1, 5): ('square', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('square', 'black'), (2, 4): ('circle', 'white'), (2, 5): ('triangle', 'black'), (3, 0): ('triangle', 'white'), (3, 1): ('square', 'black'), (3, 2): ('triangle', 'white'), (3, 3): ('circle', 'white'), (3, 4): ('triangle', 'black'), (3, 5): ('triangle', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('circle', 'white'), (4, 2): ('square', 'white'), (4, 3): ('square', 'white'), (4, 4): ('circle', 'white'), (4, 5): ('square', 'black'), (5, 0): ('square', 'white'), (5, 1): ('square', 'white'), (5, 2): ('square', 'white'), (5, 3): ('square', 'white'), (5, 4): ('circle', 'black'), (5, 5): ('triangle', 'black'), (6, 0): ('square', 'black'), (6, 1): ('square', 'white'), (6, 2): ('circle', 'white'), (6, 3): ('triangle', 'white'), (6, 4): ('square', 'black'), (6, 5): ('square', 'white'), (7, 0): ('circle', 'white'), (7, 1): ('square', 'black'), (7, 2): ('square', 'black'), (7, 3): ('triangle', 'black'), (7, 4): ('square', 'white'), (7, 5): ('square', 'black'), (8, 0): ('triangle', 'white'), (8, 1): ('triangle', 'white'), (8, 2): ('triangle', 'white'), (8, 3): ('triangle', 'black'), (8, 4): ('square', 'white'), (8, 5): ('triangle', 'white')}, {(0, 0): ('square', 'black'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('triangle', 'white'), (0, 4): ('circle', 'black'), (0, 5): ('circle', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('square', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('triangle', 'white'), (2, 0): ('square', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('square', 'black'), (2, 3): ('circle', 'black'), (2, 4): ('circle', 'white'), (2, 5): ('square', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('circle', 'white'), (3, 2): ('square', 'black'), (3, 3): ('square', 'black'), (3, 4): ('triangle', 'black'), (3, 5): ('circle', 'black'), (4, 0): ('square', 'black'), (4, 1): ('circle', 'white'), (4, 2): ('circle', 'black'), (4, 3): ('square', 'black'), (4, 4): ('triangle', 'white'), (4, 5): ('circle', 'white'), (5, 0): ('square', 'black'), (5, 1): ('triangle', 'black'), (5, 2): ('triangle', 'white'), (5, 3): ('square', 'white'), (5, 4): ('circle', 'white'), (5, 5): ('circle', 'white'), (6, 0): ('square', 'black'), (6, 1): ('triangle', 'black'), (6, 2): ('triangle', 'white'), (6, 3): ('circle', 'white'), (6, 4): ('triangle', 'white'), (6, 5): ('square', 'black'), (7, 0): ('triangle', 'black'), (7, 1): ('circle', 'white'), (7, 2): ('circle', 'black'), (7, 3): ('triangle', 'black'), (7, 4): ('circle', 'white'), (7, 5): ('triangle', 'black'), (8, 0): ('circle', 'white'), (8, 1): ('square', 'black'), (8, 2): ('square', 'black'), (8, 3): ('triangle', 'white'), (8, 4): ('square', 'black'), (8, 5): ('square', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'white'), (0, 3): ('triangle', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('triangle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('triangle', 'white'), (1, 5): ('circle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('circle', 'black'), (2, 3): ('circle', 'black'), (2, 4): ('circle', 'white'), (2, 5): ('square', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('triangle', 'black'), (3, 3): ('square', 'black'), (3, 4): ('square', 'black'), (3, 5): ('triangle', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('square', 'white'), (4, 2): ('triangle', 'white'), (4, 3): ('circle', 'white'), (4, 4): ('triangle', 'white'), (4, 5): ('square', 'white'), (5, 0): ('triangle', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('square', 'white'), (5, 3): ('circle', 'black'), (5, 4): ('square', 'black'), (5, 5): ('square', 'black'), (6, 0): ('triangle', 'white'), (6, 1): ('square', 'black'), (6, 2): ('square', 'white'), (6, 3): ('square', 'black'), (6, 4): ('square', 'black'), (6, 5): ('square', 'white'), (7, 0): ('circle', 'black'), (7, 1): ('triangle', 'black'), (7, 2): ('circle', 'white'), (7, 3): ('triangle', 'white'), (7, 4): ('circle', 'white'), (7, 5): ('square', 'black'), (8, 0): ('square', 'white'), (8, 1): ('square', 'black'), (8, 2): ('circle', 'black'), (8, 3): ('triangle', 'black'), (8, 4): ('square', 'black'), (8, 5): ('circle', 'black')}]","(9, 6, 5)"
+232.svg,"[{(0, 0): ('triangle', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('circle', 'white'), (0, 4): ('triangle', 'white'), (0, 5): ('circle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('square', 'black'), (1, 2): ('circle', 'black'), (1, 3): ('triangle', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('square', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('square', 'white'), (2, 2): ('circle', 'white'), (2, 3): ('square', 'white'), (2, 4): ('circle', 'white'), (2, 5): ('circle', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('triangle', 'black'), (3, 2): ('square', 'white'), (3, 3): ('circle', 'black'), (3, 4): ('circle', 'black'), (3, 5): ('square', 'black'), (4, 0): ('square', 'black'), (4, 1): ('triangle', 'black'), (4, 2): ('circle', 'white'), (4, 3): ('square', 'black'), (4, 4): ('circle', 'white'), (4, 5): ('triangle', 'black'), (5, 0): ('triangle', 'black'), (5, 1): ('triangle', 'white'), (5, 2): ('circle', 'black'), (5, 3): ('circle', 'white'), (5, 4): ('triangle', 'white'), (5, 5): ('triangle', 'black'), (6, 0): ('square', 'black'), (6, 1): ('square', 'black'), (6, 2): ('square', 'white'), (6, 3): ('triangle', 'white'), (6, 4): ('circle', 'black'), (6, 5): ('circle', 'black'), (7, 0): ('circle', 'white'), (7, 1): ('circle', 'white'), (7, 2): ('triangle', 'white'), (7, 3): ('triangle', 'black'), (7, 4): ('circle', 'white'), (7, 5): ('circle', 'black'), (8, 0): ('triangle', 'white'), (8, 1): ('triangle', 'black'), (8, 2): ('square', 'white'), (8, 3): ('square', 'black'), (8, 4): ('circle', 'black'), (8, 5): ('triangle', 'white')}, {(0, 0): ('circle', 'black'), (0, 1): ('square', 'white'), (0, 2): ('square', 'white'), (0, 3): ('circle', 'white'), (0, 4): ('circle', 'white'), (0, 5): ('square', 'black'), (1, 0): ('square', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('circle', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('square', 'black'), (1, 5): ('triangle', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('square', 'white'), (2, 3): ('square', 'white'), (2, 4): ('circle', 'black'), (2, 5): ('triangle', 'white'), (3, 0): ('square', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('triangle', 'white'), (3, 3): ('square', 'white'), (3, 4): ('square', 'black'), (3, 5): ('circle', 'white'), (4, 0): ('square', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('circle', 'white'), (4, 3): ('square', 'white'), (4, 4): ('circle', 'white'), (4, 5): ('triangle', 'white'), (5, 0): ('square', 'white'), (5, 1): ('triangle', 'white'), (5, 2): ('circle', 'white'), (5, 3): ('square', 'white'), (5, 4): ('circle', 'white'), (5, 5): ('square', 'white'), (6, 0): ('circle', 'white'), (6, 1): ('square', 'black'), (6, 2): ('circle', 'black'), (6, 3): ('triangle', 'white'), (6, 4): ('triangle', 'white'), (6, 5): ('triangle', 'black'), (7, 0): ('circle', 'black'), (7, 1): ('triangle', 'white'), (7, 2): ('triangle', 'black'), (7, 3): ('circle', 'white'), (7, 4): ('circle', 'black'), (7, 5): ('circle', 'white'), (8, 0): ('square', 'white'), (8, 1): ('triangle', 'black'), (8, 2): ('square', 'black'), (8, 3): ('triangle', 'black'), (8, 4): ('square', 'black'), (8, 5): ('square', 'black')}, {(0, 0): ('square', 'white'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('square', 'white'), (0, 4): ('square', 'white'), (0, 5): ('triangle', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('circle', 'white'), (2, 0): ('square', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('square', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('circle', 'black'), (3, 0): ('square', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('circle', 'black'), (3, 3): ('triangle', 'black'), (3, 4): ('triangle', 'black'), (3, 5): ('square', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('square', 'black'), (4, 2): ('square', 'black'), (4, 3): ('circle', 'white'), (4, 4): ('square', 'black'), (4, 5): ('triangle', 'black'), (5, 0): ('square', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('triangle', 'white'), (5, 3): ('square', 'white'), (5, 4): ('square', 'black'), (5, 5): ('circle', 'black'), (6, 0): ('triangle', 'white'), (6, 1): ('triangle', 'white'), (6, 2): ('circle', 'black'), (6, 3): ('circle', 'black'), (6, 4): ('triangle', 'black'), (6, 5): ('square', 'black'), (7, 0): ('circle', 'white'), (7, 1): ('circle', 'black'), (7, 2): ('square', 'white'), (7, 3): ('circle', 'black'), (7, 4): ('triangle', 'white'), (7, 5): ('circle', 'white'), (8, 0): ('circle', 'black'), (8, 1): ('square', 'black'), (8, 2): ('triangle', 'black'), (8, 3): ('circle', 'white'), (8, 4): ('circle', 'white'), (8, 5): ('circle', 'black')}, {(0, 0): ('triangle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('square', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('triangle', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'black'), (1, 3): ('circle', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('triangle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('circle', 'black'), (2, 4): ('square', 'white'), (2, 5): ('circle', 'white'), (3, 0): ('circle', 'black'), (3, 1): ('square', 'white'), (3, 2): ('square', 'black'), (3, 3): ('square', 'black'), (3, 4): ('square', 'black'), (3, 5): ('triangle', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('circle', 'white'), (4, 2): ('square', 'white'), (4, 3): ('circle', 'white'), (4, 4): ('square', 'white'), (4, 5): ('square', 'black'), (5, 0): ('triangle', 'black'), (5, 1): ('square', 'white'), (5, 2): ('circle', 'white'), (5, 3): ('circle', 'black'), (5, 4): ('circle', 'black'), (5, 5): ('square', 'black'), (6, 0): ('square', 'black'), (6, 1): ('triangle', 'black'), (6, 2): ('circle', 'white'), (6, 3): ('circle', 'white'), (6, 4): ('square', 'black'), (6, 5): ('triangle', 'white'), (7, 0): ('circle', 'white'), (7, 1): ('circle', 'black'), (7, 2): ('circle', 'white'), (7, 3): ('triangle', 'white'), (7, 4): ('square', 'white'), (7, 5): ('square', 'white'), (8, 0): ('circle', 'white'), (8, 1): ('square', 'white'), (8, 2): ('circle', 'white'), (8, 3): ('triangle', 'black'), (8, 4): ('triangle', 'white'), (8, 5): ('triangle', 'black')}, {(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('square', 'white'), (0, 3): ('circle', 'white'), (0, 4): ('square', 'black'), (0, 5): ('circle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'black'), (1, 3): ('circle', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('square', 'black'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'black'), (2, 3): ('triangle', 'black'), (2, 4): ('square', 'black'), (2, 5): ('triangle', 'white'), (3, 0): ('square', 'black'), (3, 1): ('triangle', 'black'), (3, 2): ('triangle', 'black'), (3, 3): ('square', 'black'), (3, 4): ('circle', 'white'), (3, 5): ('square', 'white'), (4, 0): ('triangle', 'white'), (4, 1): ('triangle', 'black'), (4, 2): ('square', 'black'), (4, 3): ('triangle', 'white'), (4, 4): ('square', 'white'), (4, 5): ('triangle', 'black'), (5, 0): ('square', 'black'), (5, 1): ('triangle', 'black'), (5, 2): ('triangle', 'black'), (5, 3): ('circle', 'white'), (5, 4): ('triangle', 'black'), (5, 5): ('square', 'black'), (6, 0): ('circle', 'white'), (6, 1): ('square', 'black'), (6, 2): ('triangle', 'white'), (6, 3): ('square', 'white'), (6, 4): ('circle', 'white'), (6, 5): ('circle', 'black'), (7, 0): ('circle', 'white'), (7, 1): ('triangle', 'white'), (7, 2): ('circle', 'white'), (7, 3): ('square', 'white'), (7, 4): ('square', 'black'), (7, 5): ('triangle', 'black'), (8, 0): ('circle', 'black'), (8, 1): ('triangle', 'white'), (8, 2): ('square', 'white'), (8, 3): ('triangle', 'white'), (8, 4): ('triangle', 'black'), (8, 5): ('square', 'white')}]","(9, 6, 5)"
+233.svg,"[{(0, 0): ('triangle', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('square', 'white'), (0, 3): ('square', 'white'), (0, 4): ('square', 'white'), (0, 5): ('circle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('circle', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('circle', 'black'), (2, 3): ('square', 'white'), (2, 4): ('circle', 'white'), (2, 5): ('circle', 'black'), (3, 0): ('triangle', 'white'), (3, 1): ('square', 'white'), (3, 2): ('triangle', 'white'), (3, 3): ('circle', 'white'), (3, 4): ('square', 'black'), (3, 5): ('triangle', 'black'), (4, 0): ('circle', 'white'), (4, 1): ('square', 'white'), (4, 2): ('square', 'white'), (4, 3): ('circle', 'white'), (4, 4): ('circle', 'black'), (4, 5): ('square', 'black'), (5, 0): ('triangle', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('circle', 'black'), (5, 3): ('triangle', 'black'), (5, 4): ('square', 'black'), (5, 5): ('circle', 'white'), (6, 0): ('circle', 'black'), (6, 1): ('circle', 'white'), (6, 2): ('triangle', 'white'), (6, 3): ('triangle', 'black'), (6, 4): ('triangle', 'white'), (6, 5): ('square', 'black'), (7, 0): ('square', 'white'), (7, 1): ('circle', 'white'), (7, 2): ('triangle', 'black'), (7, 3): ('triangle', 'white'), (7, 4): ('square', 'white'), (7, 5): ('square', 'white'), (8, 0): ('triangle', 'white'), (8, 1): ('square', 'white'), (8, 2): ('circle', 'white'), (8, 3): ('square', 'white'), (8, 4): ('circle', 'black'), (8, 5): ('circle', 'black')}, {(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('square', 'white'), (0, 3): ('triangle', 'white'), (0, 4): ('triangle', 'black'), (0, 5): ('triangle', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('circle', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'black'), (2, 2): ('square', 'white'), (2, 3): ('circle', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('circle', 'black'), (3, 0): ('circle', 'black'), (3, 1): ('square', 'black'), (3, 2): ('circle', 'white'), (3, 3): ('circle', 'white'), (3, 4): ('triangle', 'black'), (3, 5): ('triangle', 'black'), (4, 0): ('square', 'white'), (4, 1): ('triangle', 'black'), (4, 2): ('square', 'white'), (4, 3): ('circle', 'black'), (4, 4): ('triangle', 'black'), (4, 5): ('triangle', 'black'), (5, 0): ('circle', 'white'), (5, 1): ('triangle', 'black'), (5, 2): ('circle', 'white'), (5, 3): ('triangle', 'black'), (5, 4): ('triangle', 'white'), (5, 5): ('triangle', 'black'), (6, 0): ('square', 'black'), (6, 1): ('circle', 'black'), (6, 2): ('square', 'white'), (6, 3): ('circle', 'black'), (6, 4): ('triangle', 'white'), (6, 5): ('triangle', 'white'), (7, 0): ('square', 'white'), (7, 1): ('circle', 'black'), (7, 2): ('triangle', 'white'), (7, 3): ('triangle', 'black'), (7, 4): ('triangle', 'white'), (7, 5): ('circle', 'white'), (8, 0): ('circle', 'black'), (8, 1): ('circle', 'black'), (8, 2): ('circle', 'black'), (8, 3): ('square', 'black'), (8, 4): ('circle', 'white'), (8, 5): ('circle', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('square', 'white'), (0, 4): ('square', 'black'), (0, 5): ('triangle', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('square', 'black'), (1, 2): ('triangle', 'black'), (1, 3): ('square', 'black'), (1, 4): ('triangle', 'white'), (1, 5): ('square', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('triangle', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('circle', 'white'), (2, 5): ('circle', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('triangle', 'white'), (3, 3): ('circle', 'white'), (3, 4): ('triangle', 'black'), (3, 5): ('square', 'black'), (4, 0): ('circle', 'white'), (4, 1): ('square', 'black'), (4, 2): ('triangle', 'black'), (4, 3): ('square', 'white'), (4, 4): ('circle', 'white'), (4, 5): ('square', 'white'), (5, 0): ('triangle', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('triangle', 'black'), (5, 3): ('square', 'white'), (5, 4): ('triangle', 'black'), (5, 5): ('square', 'black'), (6, 0): ('triangle', 'black'), (6, 1): ('square', 'white'), (6, 2): ('triangle', 'white'), (6, 3): ('square', 'black'), (6, 4): ('square', 'black'), (6, 5): ('triangle', 'white'), (7, 0): ('square', 'black'), (7, 1): ('square', 'white'), (7, 2): ('circle', 'black'), (7, 3): ('circle', 'white'), (7, 4): ('square', 'black'), (7, 5): ('square', 'white'), (8, 0): ('square', 'black'), (8, 1): ('triangle', 'black'), (8, 2): ('triangle', 'white'), (8, 3): ('square', 'white'), (8, 4): ('square', 'white'), (8, 5): ('circle', 'black')}, {(0, 0): ('circle', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'white'), (0, 3): ('triangle', 'white'), (0, 4): ('triangle', 'black'), (0, 5): ('triangle', 'white'), (1, 0): ('triangle', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('triangle', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('square', 'white'), (1, 5): ('square', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('square', 'white'), (2, 3): ('circle', 'white'), (2, 4): ('square', 'black'), (2, 5): ('square', 'white'), (3, 0): ('triangle', 'black'), (3, 1): ('circle', 'white'), (3, 2): ('circle', 'white'), (3, 3): ('circle', 'black'), (3, 4): ('circle', 'white'), (3, 5): ('square', 'white'), (4, 0): ('circle', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('circle', 'white'), (4, 3): ('square', 'black'), (4, 4): ('circle', 'black'), (4, 5): ('circle', 'black'), (5, 0): ('triangle', 'black'), (5, 1): ('triangle', 'black'), (5, 2): ('square', 'white'), (5, 3): ('square', 'black'), (5, 4): ('square', 'white'), (5, 5): ('triangle', 'white'), (6, 0): ('circle', 'white'), (6, 1): ('square', 'white'), (6, 2): ('circle', 'black'), (6, 3): ('triangle', 'black'), (6, 4): ('triangle', 'black'), (6, 5): ('circle', 'black'), (7, 0): ('square', 'white'), (7, 1): ('triangle', 'white'), (7, 2): ('square', 'white'), (7, 3): ('triangle', 'black'), (7, 4): ('square', 'black'), (7, 5): ('square', 'white'), (8, 0): ('triangle', 'black'), (8, 1): ('square', 'black'), (8, 2): ('square', 'white'), (8, 3): ('triangle', 'black'), (8, 4): ('circle', 'white'), (8, 5): ('circle', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('square', 'black'), (0, 5): ('circle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'black'), (1, 3): ('square', 'white'), (1, 4): ('triangle', 'white'), (1, 5): ('square', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('square', 'black'), (2, 2): ('triangle', 'white'), (2, 3): ('square', 'black'), (2, 4): ('square', 'white'), (2, 5): ('square', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('triangle', 'black'), (3, 2): ('triangle', 'white'), (3, 3): ('circle', 'white'), (3, 4): ('triangle', 'white'), (3, 5): ('circle', 'black'), (4, 0): ('square', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('triangle', 'white'), (4, 3): ('triangle', 'black'), (4, 4): ('triangle', 'black'), (4, 5): ('square', 'black'), (5, 0): ('square', 'black'), (5, 1): ('square', 'black'), (5, 2): ('square', 'black'), (5, 3): ('triangle', 'black'), (5, 4): ('square', 'white'), (5, 5): ('circle', 'white'), (6, 0): ('circle', 'white'), (6, 1): ('triangle', 'white'), (6, 2): ('circle', 'white'), (6, 3): ('triangle', 'white'), (6, 4): ('triangle', 'black'), (6, 5): ('square', 'black'), (7, 0): ('square', 'black'), (7, 1): ('triangle', 'white'), (7, 2): ('triangle', 'black'), (7, 3): ('square', 'white'), (7, 4): ('square', 'white'), (7, 5): ('circle', 'white'), (8, 0): ('square', 'black'), (8, 1): ('square', 'white'), (8, 2): ('circle', 'white'), (8, 3): ('square', 'black'), (8, 4): ('triangle', 'white'), (8, 5): ('circle', 'white')}]","(9, 6, 5)"
+234.svg,"[{(0, 0): ('square', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('square', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('circle', 'black'), (0, 5): ('square', 'black'), (1, 0): ('square', 'white'), (1, 1): ('square', 'black'), (1, 2): ('square', 'black'), (1, 3): ('triangle', 'white'), (1, 4): ('triangle', 'white'), (1, 5): ('square', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('triangle', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('circle', 'white'), (3, 0): ('triangle', 'white'), (3, 1): ('triangle', 'white'), (3, 2): ('circle', 'black'), (3, 3): ('square', 'white'), (3, 4): ('triangle', 'white'), (3, 5): ('square', 'black'), (4, 0): ('circle', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('square', 'black'), (4, 3): ('circle', 'black'), (4, 4): ('circle', 'black'), (4, 5): ('circle', 'black'), (5, 0): ('square', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('circle', 'black'), (5, 3): ('circle', 'black'), (5, 4): ('square', 'white'), (5, 5): ('circle', 'black'), (6, 0): ('circle', 'black'), (6, 1): ('square', 'black'), (6, 2): ('circle', 'black'), (6, 3): ('square', 'black'), (6, 4): ('square', 'black'), (6, 5): ('square', 'white'), (7, 0): ('circle', 'black'), (7, 1): ('square', 'black'), (7, 2): ('triangle', 'white'), (7, 3): ('square', 'black'), (7, 4): ('circle', 'black'), (7, 5): ('square', 'black'), (8, 0): ('circle', 'black'), (8, 1): ('square', 'white'), (8, 2): ('square', 'white'), (8, 3): ('square', 'white'), (8, 4): ('circle', 'white'), (8, 5): ('circle', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'black'), (0, 3): ('square', 'black'), (0, 4): ('square', 'white'), (0, 5): ('triangle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('square', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('circle', 'black'), (2, 5): ('circle', 'white'), (3, 0): ('square', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('triangle', 'black'), (3, 3): ('triangle', 'white'), (3, 4): ('square', 'black'), (3, 5): ('circle', 'white'), (4, 0): ('triangle', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('circle', 'white'), (4, 3): ('triangle', 'black'), (4, 4): ('triangle', 'white'), (4, 5): ('triangle', 'black'), (5, 0): ('square', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('square', 'white'), (5, 3): ('circle', 'white'), (5, 4): ('square', 'white'), (5, 5): ('triangle', 'black'), (6, 0): ('triangle', 'white'), (6, 1): ('square', 'black'), (6, 2): ('circle', 'white'), (6, 3): ('circle', 'black'), (6, 4): ('square', 'black'), (6, 5): ('square', 'black'), (7, 0): ('square', 'black'), (7, 1): ('square', 'white'), (7, 2): ('triangle', 'black'), (7, 3): ('triangle', 'black'), (7, 4): ('circle', 'black'), (7, 5): ('triangle', 'white'), (8, 0): ('triangle', 'white'), (8, 1): ('square', 'black'), (8, 2): ('triangle', 'black'), (8, 3): ('circle', 'black'), (8, 4): ('triangle', 'white'), (8, 5): ('triangle', 'white')}, {(0, 0): ('square', 'black'), (0, 1): ('square', 'white'), (0, 2): ('square', 'black'), (0, 3): ('square', 'black'), (0, 4): ('square', 'white'), (0, 5): ('square', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('square', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('square', 'black'), (1, 4): ('circle', 'black'), (1, 5): ('circle', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('circle', 'white'), (2, 5): ('square', 'white'), (3, 0): ('square', 'white'), (3, 1): ('square', 'white'), (3, 2): ('square', 'black'), (3, 3): ('triangle', 'white'), (3, 4): ('circle', 'black'), (3, 5): ('triangle', 'white'), (4, 0): ('circle', 'black'), (4, 1): ('square', 'white'), (4, 2): ('triangle', 'white'), (4, 3): ('square', 'black'), (4, 4): ('square', 'black'), (4, 5): ('circle', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('circle', 'black'), (5, 3): ('circle', 'black'), (5, 4): ('triangle', 'white'), (5, 5): ('circle', 'white'), (6, 0): ('triangle', 'white'), (6, 1): ('circle', 'black'), (6, 2): ('square', 'white'), (6, 3): ('square', 'white'), (6, 4): ('triangle', 'black'), (6, 5): ('square', 'black'), (7, 0): ('circle', 'white'), (7, 1): ('circle', 'white'), (7, 2): ('circle', 'white'), (7, 3): ('circle', 'white'), (7, 4): ('triangle', 'white'), (7, 5): ('square', 'black'), (8, 0): ('circle', 'black'), (8, 1): ('triangle', 'white'), (8, 2): ('square', 'white'), (8, 3): ('circle', 'white'), (8, 4): ('square', 'black'), (8, 5): ('circle', 'black')}, {(0, 0): ('circle', 'black'), (0, 1): ('square', 'black'), (0, 2): ('square', 'black'), (0, 3): ('triangle', 'white'), (0, 4): ('circle', 'white'), (0, 5): ('square', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('square', 'white'), (2, 0): ('square', 'white'), (2, 1): ('square', 'black'), (2, 2): ('square', 'black'), (2, 3): ('triangle', 'white'), (2, 4): ('circle', 'white'), (2, 5): ('circle', 'white'), (3, 0): ('triangle', 'white'), (3, 1): ('square', 'black'), (3, 2): ('triangle', 'white'), (3, 3): ('square', 'black'), (3, 4): ('circle', 'black'), (3, 5): ('square', 'black'), (4, 0): ('circle', 'white'), (4, 1): ('square', 'black'), (4, 2): ('square', 'white'), (4, 3): ('triangle', 'black'), (4, 4): ('triangle', 'white'), (4, 5): ('square', 'white'), (5, 0): ('triangle', 'white'), (5, 1): ('triangle', 'white'), (5, 2): ('circle', 'black'), (5, 3): ('circle', 'black'), (5, 4): ('circle', 'black'), (5, 5): ('square', 'black'), (6, 0): ('circle', 'white'), (6, 1): ('square', 'white'), (6, 2): ('square', 'black'), (6, 3): ('triangle', 'white'), (6, 4): ('circle', 'black'), (6, 5): ('triangle', 'white'), (7, 0): ('square', 'black'), (7, 1): ('square', 'black'), (7, 2): ('square', 'black'), (7, 3): ('circle', 'white'), (7, 4): ('triangle', 'white'), (7, 5): ('circle', 'white'), (8, 0): ('circle', 'white'), (8, 1): ('circle', 'black'), (8, 2): ('square', 'white'), (8, 3): ('circle', 'white'), (8, 4): ('square', 'black'), (8, 5): ('square', 'black')}, {(0, 0): ('square', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('circle', 'white'), (0, 3): ('square', 'white'), (0, 4): ('triangle', 'black'), (0, 5): ('triangle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('triangle', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('circle', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('square', 'black'), (2, 2): ('triangle', 'white'), (2, 3): ('square', 'black'), (2, 4): ('square', 'white'), (2, 5): ('triangle', 'white'), (3, 0): ('triangle', 'white'), (3, 1): ('triangle', 'white'), (3, 2): ('square', 'black'), (3, 3): ('circle', 'white'), (3, 4): ('circle', 'black'), (3, 5): ('circle', 'black'), (4, 0): ('circle', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('triangle', 'black'), (4, 3): ('square', 'white'), (4, 4): ('triangle', 'black'), (4, 5): ('square', 'white'), (5, 0): ('square', 'white'), (5, 1): ('square', 'white'), (5, 2): ('triangle', 'black'), (5, 3): ('square', 'black'), (5, 4): ('circle', 'white'), (5, 5): ('triangle', 'white'), (6, 0): ('circle', 'black'), (6, 1): ('triangle', 'black'), (6, 2): ('triangle', 'black'), (6, 3): ('circle', 'black'), (6, 4): ('square', 'white'), (6, 5): ('triangle', 'white'), (7, 0): ('circle', 'white'), (7, 1): ('square', 'white'), (7, 2): ('square', 'black'), (7, 3): ('triangle', 'white'), (7, 4): ('triangle', 'black'), (7, 5): ('square', 'white'), (8, 0): ('circle', 'black'), (8, 1): ('square', 'black'), (8, 2): ('circle', 'white'), (8, 3): ('square', 'white'), (8, 4): ('square', 'white'), (8, 5): ('triangle', 'black')}]","(9, 6, 5)"
+235.svg,"[{(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('circle', 'white'), (0, 3): ('square', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('circle', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('square', 'black'), (1, 4): ('triangle', 'black'), (1, 5): ('square', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'white'), (2, 3): ('square', 'black'), (2, 4): ('square', 'white'), (2, 5): ('circle', 'white'), (3, 0): ('triangle', 'black'), (3, 1): ('square', 'black'), (3, 2): ('circle', 'white'), (3, 3): ('circle', 'white'), (3, 4): ('circle', 'black'), (3, 5): ('circle', 'white'), (4, 0): ('triangle', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('triangle', 'black'), (4, 3): ('triangle', 'white'), (4, 4): ('square', 'white'), (4, 5): ('square', 'black'), (5, 0): ('triangle', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('square', 'black'), (5, 3): ('circle', 'black'), (5, 4): ('square', 'white'), (5, 5): ('circle', 'white'), (6, 0): ('square', 'white'), (6, 1): ('square', 'black'), (6, 2): ('circle', 'white'), (6, 3): ('square', 'white'), (6, 4): ('circle', 'black'), (6, 5): ('circle', 'black'), (7, 0): ('square', 'white'), (7, 1): ('circle', 'white'), (7, 2): ('square', 'white'), (7, 3): ('circle', 'black'), (7, 4): ('triangle', 'white'), (7, 5): ('triangle', 'white'), (8, 0): ('square', 'black'), (8, 1): ('square', 'white'), (8, 2): ('triangle', 'black'), (8, 3): ('square', 'white'), (8, 4): ('square', 'black'), (8, 5): ('square', 'black')}, {(0, 0): ('triangle', 'black'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('square', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('circle', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('triangle', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('triangle', 'black'), (1, 5): ('circle', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('square', 'white'), (2, 4): ('circle', 'white'), (2, 5): ('circle', 'white'), (3, 0): ('square', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('square', 'black'), (3, 3): ('square', 'black'), (3, 4): ('circle', 'white'), (3, 5): ('square', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('square', 'black'), (4, 2): ('triangle', 'black'), (4, 3): ('square', 'white'), (4, 4): ('circle', 'white'), (4, 5): ('square', 'black'), (5, 0): ('triangle', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('circle', 'white'), (5, 3): ('triangle', 'black'), (5, 4): ('circle', 'black'), (5, 5): ('circle', 'black'), (6, 0): ('square', 'white'), (6, 1): ('square', 'black'), (6, 2): ('square', 'white'), (6, 3): ('circle', 'white'), (6, 4): ('triangle', 'white'), (6, 5): ('square', 'black'), (7, 0): ('square', 'white'), (7, 1): ('triangle', 'black'), (7, 2): ('square', 'white'), (7, 3): ('square', 'black'), (7, 4): ('square', 'black'), (7, 5): ('triangle', 'black'), (8, 0): ('triangle', 'black'), (8, 1): ('square', 'black'), (8, 2): ('square', 'black'), (8, 3): ('triangle', 'black'), (8, 4): ('square', 'black'), (8, 5): ('circle', 'white')}, {(0, 0): ('square', 'black'), (0, 1): ('square', 'white'), (0, 2): ('triangle', 'white'), (0, 3): ('square', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('circle', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('square', 'black'), (1, 4): ('circle', 'black'), (1, 5): ('circle', 'black'), (2, 0): ('square', 'black'), (2, 1): ('square', 'black'), (2, 2): ('square', 'white'), (2, 3): ('circle', 'black'), (2, 4): ('circle', 'white'), (2, 5): ('square', 'black'), (3, 0): ('square', 'white'), (3, 1): ('square', 'white'), (3, 2): ('triangle', 'black'), (3, 3): ('triangle', 'white'), (3, 4): ('triangle', 'white'), (3, 5): ('square', 'white'), (4, 0): ('square', 'black'), (4, 1): ('triangle', 'white'), (4, 2): ('circle', 'white'), (4, 3): ('square', 'white'), (4, 4): ('circle', 'white'), (4, 5): ('circle', 'black'), (5, 0): ('circle', 'black'), (5, 1): ('triangle', 'white'), (5, 2): ('triangle', 'white'), (5, 3): ('circle', 'white'), (5, 4): ('square', 'black'), (5, 5): ('triangle', 'white'), (6, 0): ('square', 'black'), (6, 1): ('triangle', 'white'), (6, 2): ('square', 'black'), (6, 3): ('square', 'white'), (6, 4): ('square', 'white'), (6, 5): ('square', 'black'), (7, 0): ('triangle', 'white'), (7, 1): ('circle', 'white'), (7, 2): ('triangle', 'black'), (7, 3): ('square', 'white'), (7, 4): ('circle', 'white'), (7, 5): ('square', 'black'), (8, 0): ('triangle', 'white'), (8, 1): ('square', 'black'), (8, 2): ('circle', 'white'), (8, 3): ('triangle', 'black'), (8, 4): ('square', 'black'), (8, 5): ('triangle', 'black')}, {(0, 0): ('square', 'white'), (0, 1): ('square', 'black'), (0, 2): ('square', 'white'), (0, 3): ('triangle', 'white'), (0, 4): ('triangle', 'white'), (0, 5): ('square', 'white'), (1, 0): ('triangle', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('square', 'white'), (1, 3): ('triangle', 'white'), (1, 4): ('triangle', 'black'), (1, 5): ('circle', 'white'), (2, 0): ('square', 'white'), (2, 1): ('square', 'black'), (2, 2): ('square', 'black'), (2, 3): ('triangle', 'black'), (2, 4): ('square', 'white'), (2, 5): ('circle', 'black'), (3, 0): ('triangle', 'white'), (3, 1): ('circle', 'white'), (3, 2): ('square', 'white'), (3, 3): ('circle', 'white'), (3, 4): ('triangle', 'black'), (3, 5): ('triangle', 'black'), (4, 0): ('triangle', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('square', 'white'), (4, 3): ('circle', 'black'), (4, 4): ('square', 'black'), (4, 5): ('circle', 'white'), (5, 0): ('square', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('square', 'white'), (5, 3): ('square', 'white'), (5, 4): ('square', 'black'), (5, 5): ('square', 'white'), (6, 0): ('square', 'white'), (6, 1): ('circle', 'black'), (6, 2): ('square', 'white'), (6, 3): ('circle', 'black'), (6, 4): ('triangle', 'white'), (6, 5): ('square', 'black'), (7, 0): ('circle', 'white'), (7, 1): ('circle', 'white'), (7, 2): ('square', 'black'), (7, 3): ('triangle', 'white'), (7, 4): ('triangle', 'black'), (7, 5): ('square', 'white'), (8, 0): ('circle', 'white'), (8, 1): ('square', 'white'), (8, 2): ('triangle', 'black'), (8, 3): ('circle', 'black'), (8, 4): ('circle', 'black'), (8, 5): ('triangle', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('square', 'black'), (0, 5): ('circle', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'black'), (1, 3): ('triangle', 'black'), (1, 4): ('square', 'white'), (1, 5): ('circle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('triangle', 'white'), (2, 3): ('circle', 'black'), (2, 4): ('square', 'white'), (2, 5): ('square', 'black'), (3, 0): ('square', 'white'), (3, 1): ('square', 'black'), (3, 2): ('circle', 'white'), (3, 3): ('triangle', 'white'), (3, 4): ('square', 'white'), (3, 5): ('triangle', 'black'), (4, 0): ('square', 'black'), (4, 1): ('triangle', 'black'), (4, 2): ('triangle', 'white'), (4, 3): ('triangle', 'black'), (4, 4): ('triangle', 'white'), (4, 5): ('square', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('square', 'black'), (5, 3): ('circle', 'black'), (5, 4): ('square', 'white'), (5, 5): ('square', 'white'), (6, 0): ('triangle', 'white'), (6, 1): ('circle', 'black'), (6, 2): ('square', 'white'), (6, 3): ('triangle', 'white'), (6, 4): ('triangle', 'black'), (6, 5): ('circle', 'black'), (7, 0): ('circle', 'white'), (7, 1): ('triangle', 'black'), (7, 2): ('triangle', 'white'), (7, 3): ('triangle', 'white'), (7, 4): ('circle', 'black'), (7, 5): ('triangle', 'white'), (8, 0): ('square', 'white'), (8, 1): ('circle', 'white'), (8, 2): ('triangle', 'white'), (8, 3): ('triangle', 'white'), (8, 4): ('circle', 'white'), (8, 5): ('square', 'white')}]","(9, 6, 5)"
+236.svg,"[{(0, 0): ('triangle', 'black'), (0, 1): ('square', 'white'), (0, 2): ('triangle', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('circle', 'white'), (1, 0): ('triangle', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('triangle', 'black'), (1, 5): ('triangle', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('square', 'white'), (2, 3): ('circle', 'black'), (2, 4): ('triangle', 'white'), (2, 5): ('triangle', 'white'), (3, 0): ('square', 'white'), (3, 1): ('square', 'white'), (3, 2): ('triangle', 'white'), (3, 3): ('triangle', 'white'), (3, 4): ('square', 'black'), (3, 5): ('triangle', 'white'), (4, 0): ('square', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('circle', 'white'), (4, 3): ('square', 'black'), (4, 4): ('triangle', 'white'), (4, 5): ('triangle', 'black'), (5, 0): ('square', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('square', 'black'), (5, 3): ('circle', 'white'), (5, 4): ('square', 'black'), (5, 5): ('square', 'black'), (6, 0): ('triangle', 'black'), (6, 1): ('triangle', 'white'), (6, 2): ('square', 'white'), (6, 3): ('square', 'white'), (6, 4): ('circle', 'white'), (6, 5): ('circle', 'black'), (7, 0): ('triangle', 'white'), (7, 1): ('triangle', 'white'), (7, 2): ('triangle', 'white'), (7, 3): ('square', 'white'), (7, 4): ('square', 'white'), (7, 5): ('square', 'black'), (8, 0): ('circle', 'white'), (8, 1): ('triangle', 'white'), (8, 2): ('square', 'black'), (8, 3): ('triangle', 'white'), (8, 4): ('circle', 'black'), (8, 5): ('triangle', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('triangle', 'white'), (0, 4): ('square', 'white'), (0, 5): ('triangle', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('square', 'white'), (1, 4): ('triangle', 'black'), (1, 5): ('circle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('square', 'black'), (2, 3): ('triangle', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('square', 'black'), (3, 0): ('square', 'white'), (3, 1): ('square', 'black'), (3, 2): ('square', 'white'), (3, 3): ('triangle', 'black'), (3, 4): ('triangle', 'white'), (3, 5): ('triangle', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('circle', 'black'), (4, 3): ('circle', 'white'), (4, 4): ('square', 'white'), (4, 5): ('circle', 'black'), (5, 0): ('square', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('square', 'white'), (5, 3): ('circle', 'black'), (5, 4): ('circle', 'white'), (5, 5): ('square', 'black'), (6, 0): ('triangle', 'black'), (6, 1): ('triangle', 'white'), (6, 2): ('triangle', 'white'), (6, 3): ('circle', 'black'), (6, 4): ('circle', 'black'), (6, 5): ('triangle', 'black'), (7, 0): ('square', 'black'), (7, 1): ('square', 'white'), (7, 2): ('circle', 'white'), (7, 3): ('square', 'white'), (7, 4): ('circle', 'black'), (7, 5): ('square', 'white'), (8, 0): ('triangle', 'black'), (8, 1): ('square', 'black'), (8, 2): ('triangle', 'white'), (8, 3): ('triangle', 'black'), (8, 4): ('square', 'black'), (8, 5): ('square', 'black')}, {(0, 0): ('square', 'black'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('triangle', 'black'), (0, 4): ('circle', 'black'), (0, 5): ('triangle', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('triangle', 'white'), (1, 5): ('square', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('square', 'white'), (2, 2): ('square', 'black'), (2, 3): ('square', 'white'), (2, 4): ('circle', 'white'), (2, 5): ('triangle', 'white'), (3, 0): ('triangle', 'black'), (3, 1): ('square', 'black'), (3, 2): ('triangle', 'white'), (3, 3): ('triangle', 'black'), (3, 4): ('triangle', 'white'), (3, 5): ('triangle', 'white'), (4, 0): ('circle', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('square', 'white'), (4, 3): ('triangle', 'white'), (4, 4): ('square', 'black'), (4, 5): ('circle', 'white'), (5, 0): ('square', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('square', 'white'), (5, 3): ('square', 'white'), (5, 4): ('square', 'white'), (5, 5): ('square', 'white'), (6, 0): ('circle', 'white'), (6, 1): ('triangle', 'white'), (6, 2): ('circle', 'black'), (6, 3): ('square', 'black'), (6, 4): ('triangle', 'white'), (6, 5): ('square', 'white'), (7, 0): ('square', 'white'), (7, 1): ('triangle', 'white'), (7, 2): ('square', 'white'), (7, 3): ('triangle', 'white'), (7, 4): ('circle', 'black'), (7, 5): ('circle', 'black'), (8, 0): ('triangle', 'black'), (8, 1): ('triangle', 'white'), (8, 2): ('circle', 'white'), (8, 3): ('square', 'white'), (8, 4): ('square', 'white'), (8, 5): ('square', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('triangle', 'black'), (0, 3): ('square', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('circle', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('circle', 'black'), (1, 3): ('triangle', 'white'), (1, 4): ('triangle', 'black'), (1, 5): ('square', 'black'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('triangle', 'black'), (2, 4): ('square', 'black'), (2, 5): ('triangle', 'black'), (3, 0): ('circle', 'white'), (3, 1): ('square', 'black'), (3, 2): ('circle', 'black'), (3, 3): ('square', 'white'), (3, 4): ('triangle', 'white'), (3, 5): ('circle', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('triangle', 'white'), (4, 3): ('square', 'black'), (4, 4): ('triangle', 'black'), (4, 5): ('triangle', 'black'), (5, 0): ('square', 'white'), (5, 1): ('triangle', 'black'), (5, 2): ('square', 'white'), (5, 3): ('circle', 'black'), (5, 4): ('circle', 'black'), (5, 5): ('triangle', 'white'), (6, 0): ('triangle', 'black'), (6, 1): ('circle', 'black'), (6, 2): ('square', 'white'), (6, 3): ('triangle', 'black'), (6, 4): ('square', 'white'), (6, 5): ('triangle', 'black'), (7, 0): ('square', 'white'), (7, 1): ('square', 'white'), (7, 2): ('triangle', 'black'), (7, 3): ('circle', 'white'), (7, 4): ('square', 'black'), (7, 5): ('square', 'black'), (8, 0): ('circle', 'black'), (8, 1): ('circle', 'black'), (8, 2): ('triangle', 'black'), (8, 3): ('square', 'black'), (8, 4): ('triangle', 'black'), (8, 5): ('triangle', 'black')}, {(0, 0): ('square', 'black'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('triangle', 'white'), (0, 4): ('circle', 'white'), (0, 5): ('square', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('circle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('square', 'black'), (2, 2): ('triangle', 'white'), (2, 3): ('circle', 'black'), (2, 4): ('circle', 'black'), (2, 5): ('triangle', 'black'), (3, 0): ('square', 'black'), (3, 1): ('circle', 'white'), (3, 2): ('circle', 'black'), (3, 3): ('circle', 'black'), (3, 4): ('square', 'black'), (3, 5): ('triangle', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('square', 'black'), (4, 2): ('square', 'white'), (4, 3): ('triangle', 'white'), (4, 4): ('circle', 'black'), (4, 5): ('circle', 'black'), (5, 0): ('square', 'white'), (5, 1): ('square', 'black'), (5, 2): ('circle', 'white'), (5, 3): ('square', 'white'), (5, 4): ('triangle', 'black'), (5, 5): ('square', 'white'), (6, 0): ('triangle', 'black'), (6, 1): ('square', 'white'), (6, 2): ('square', 'white'), (6, 3): ('square', 'white'), (6, 4): ('triangle', 'white'), (6, 5): ('triangle', 'black'), (7, 0): ('triangle', 'black'), (7, 1): ('square', 'white'), (7, 2): ('triangle', 'black'), (7, 3): ('square', 'black'), (7, 4): ('square', 'white'), (7, 5): ('circle', 'black'), (8, 0): ('circle', 'black'), (8, 1): ('square', 'black'), (8, 2): ('circle', 'black'), (8, 3): ('triangle', 'black'), (8, 4): ('circle', 'white'), (8, 5): ('circle', 'black')}]","(9, 6, 5)"
+237.svg,"[{(0, 0): ('circle', 'white'), (0, 1): ('square', 'white'), (0, 2): ('triangle', 'black'), (0, 3): ('circle', 'white'), (0, 4): ('circle', 'white'), (0, 5): ('circle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'black'), (1, 3): ('square', 'black'), (1, 4): ('square', 'black'), (1, 5): ('circle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('square', 'black'), (2, 5): ('circle', 'white'), (3, 0): ('circle', 'black'), (3, 1): ('square', 'white'), (3, 2): ('triangle', 'white'), (3, 3): ('square', 'white'), (3, 4): ('square', 'black'), (3, 5): ('square', 'white'), (4, 0): ('triangle', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('triangle', 'black'), (4, 3): ('triangle', 'white'), (4, 4): ('square', 'white'), (4, 5): ('triangle', 'white'), (5, 0): ('square', 'black'), (5, 1): ('triangle', 'white'), (5, 2): ('square', 'black'), (5, 3): ('circle', 'black'), (5, 4): ('circle', 'white'), (5, 5): ('square', 'black'), (6, 0): ('square', 'white'), (6, 1): ('square', 'white'), (6, 2): ('circle', 'black'), (6, 3): ('triangle', 'black'), (6, 4): ('triangle', 'white'), (6, 5): ('circle', 'white'), (7, 0): ('triangle', 'white'), (7, 1): ('triangle', 'white'), (7, 2): ('triangle', 'black'), (7, 3): ('square', 'white'), (7, 4): ('circle', 'white'), (7, 5): ('triangle', 'black'), (8, 0): ('square', 'black'), (8, 1): ('triangle', 'white'), (8, 2): ('circle', 'black'), (8, 3): ('circle', 'white'), (8, 4): ('triangle', 'black'), (8, 5): ('triangle', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('square', 'black'), (0, 3): ('triangle', 'white'), (0, 4): ('circle', 'white'), (0, 5): ('circle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'black'), (1, 3): ('triangle', 'black'), (1, 4): ('square', 'black'), (1, 5): ('square', 'white'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('circle', 'white'), (2, 3): ('circle', 'white'), (2, 4): ('square', 'black'), (2, 5): ('circle', 'white'), (3, 0): ('square', 'black'), (3, 1): ('circle', 'white'), (3, 2): ('square', 'white'), (3, 3): ('triangle', 'white'), (3, 4): ('triangle', 'black'), (3, 5): ('circle', 'white'), (4, 0): ('circle', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('circle', 'black'), (4, 3): ('square', 'white'), (4, 4): ('square', 'white'), (4, 5): ('triangle', 'black'), (5, 0): ('circle', 'white'), (5, 1): ('square', 'black'), (5, 2): ('triangle', 'black'), (5, 3): ('triangle', 'black'), (5, 4): ('circle', 'white'), (5, 5): ('triangle', 'white'), (6, 0): ('triangle', 'black'), (6, 1): ('triangle', 'white'), (6, 2): ('triangle', 'white'), (6, 3): ('triangle', 'white'), (6, 4): ('circle', 'black'), (6, 5): ('triangle', 'black'), (7, 0): ('triangle', 'black'), (7, 1): ('triangle', 'white'), (7, 2): ('circle', 'white'), (7, 3): ('triangle', 'white'), (7, 4): ('triangle', 'black'), (7, 5): ('circle', 'black'), (8, 0): ('circle', 'black'), (8, 1): ('square', 'black'), (8, 2): ('triangle', 'black'), (8, 3): ('square', 'white'), (8, 4): ('circle', 'black'), (8, 5): ('square', 'black')}, {(0, 0): ('triangle', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('triangle', 'black'), (0, 3): ('square', 'white'), (0, 4): ('triangle', 'white'), (0, 5): ('circle', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('square', 'black'), (1, 3): ('triangle', 'black'), (1, 4): ('circle', 'black'), (1, 5): ('circle', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('square', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('triangle', 'white'), (3, 0): ('square', 'white'), (3, 1): ('triangle', 'black'), (3, 2): ('square', 'white'), (3, 3): ('circle', 'black'), (3, 4): ('square', 'black'), (3, 5): ('circle', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('circle', 'white'), (4, 3): ('square', 'white'), (4, 4): ('square', 'black'), (4, 5): ('triangle', 'white'), (5, 0): ('circle', 'white'), (5, 1): ('triangle', 'white'), (5, 2): ('triangle', 'white'), (5, 3): ('circle', 'black'), (5, 4): ('triangle', 'white'), (5, 5): ('circle', 'white'), (6, 0): ('triangle', 'black'), (6, 1): ('triangle', 'black'), (6, 2): ('square', 'black'), (6, 3): ('circle', 'black'), (6, 4): ('triangle', 'white'), (6, 5): ('circle', 'black'), (7, 0): ('triangle', 'white'), (7, 1): ('circle', 'white'), (7, 2): ('triangle', 'white'), (7, 3): ('circle', 'white'), (7, 4): ('square', 'black'), (7, 5): ('square', 'white'), (8, 0): ('square', 'white'), (8, 1): ('triangle', 'black'), (8, 2): ('circle', 'white'), (8, 3): ('circle', 'white'), (8, 4): ('circle', 'white'), (8, 5): ('triangle', 'black')}, {(0, 0): ('square', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('square', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('triangle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('triangle', 'black'), (1, 3): ('triangle', 'black'), (1, 4): ('square', 'black'), (1, 5): ('triangle', 'black'), (2, 0): ('square', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('square', 'white'), (2, 5): ('circle', 'black'), (3, 0): ('circle', 'white'), (3, 1): ('square', 'black'), (3, 2): ('triangle', 'black'), (3, 3): ('square', 'white'), (3, 4): ('square', 'black'), (3, 5): ('square', 'black'), (4, 0): ('triangle', 'white'), (4, 1): ('square', 'white'), (4, 2): ('square', 'white'), (4, 3): ('triangle', 'black'), (4, 4): ('triangle', 'black'), (4, 5): ('circle', 'black'), (5, 0): ('circle', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('square', 'white'), (5, 3): ('circle', 'white'), (5, 4): ('circle', 'black'), (5, 5): ('circle', 'white'), (6, 0): ('square', 'white'), (6, 1): ('square', 'white'), (6, 2): ('circle', 'white'), (6, 3): ('square', 'black'), (6, 4): ('triangle', 'white'), (6, 5): ('triangle', 'black'), (7, 0): ('triangle', 'white'), (7, 1): ('circle', 'white'), (7, 2): ('triangle', 'black'), (7, 3): ('circle', 'white'), (7, 4): ('circle', 'black'), (7, 5): ('square', 'black'), (8, 0): ('triangle', 'black'), (8, 1): ('square', 'black'), (8, 2): ('circle', 'white'), (8, 3): ('circle', 'black'), (8, 4): ('square', 'white'), (8, 5): ('square', 'black')}, {(0, 0): ('square', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('triangle', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('circle', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'white'), (1, 3): ('square', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('square', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'black'), (2, 3): ('square', 'black'), (2, 4): ('circle', 'black'), (2, 5): ('square', 'white'), (3, 0): ('square', 'black'), (3, 1): ('circle', 'white'), (3, 2): ('triangle', 'black'), (3, 3): ('circle', 'black'), (3, 4): ('triangle', 'black'), (3, 5): ('circle', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('circle', 'white'), (4, 2): ('triangle', 'black'), (4, 3): ('square', 'black'), (4, 4): ('triangle', 'white'), (4, 5): ('circle', 'black'), (5, 0): ('triangle', 'black'), (5, 1): ('triangle', 'white'), (5, 2): ('square', 'white'), (5, 3): ('triangle', 'white'), (5, 4): ('circle', 'black'), (5, 5): ('triangle', 'black'), (6, 0): ('circle', 'black'), (6, 1): ('triangle', 'black'), (6, 2): ('circle', 'white'), (6, 3): ('circle', 'white'), (6, 4): ('square', 'white'), (6, 5): ('triangle', 'black'), (7, 0): ('circle', 'black'), (7, 1): ('square', 'white'), (7, 2): ('square', 'white'), (7, 3): ('square', 'white'), (7, 4): ('square', 'white'), (7, 5): ('circle', 'white'), (8, 0): ('triangle', 'black'), (8, 1): ('square', 'white'), (8, 2): ('square', 'white'), (8, 3): ('triangle', 'black'), (8, 4): ('square', 'white'), (8, 5): ('circle', 'black')}]","(9, 6, 5)"
+238.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('square', 'black'), (0, 3): ('square', 'white'), (0, 4): ('circle', 'black'), (0, 5): ('square', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('triangle', 'white'), (1, 3): ('square', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('triangle', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('square', 'black'), (2, 2): ('triangle', 'white'), (2, 3): ('square', 'black'), (2, 4): ('triangle', 'white'), (2, 5): ('triangle', 'black'), (3, 0): ('circle', 'black'), (3, 1): ('square', 'white'), (3, 2): ('triangle', 'white'), (3, 3): ('triangle', 'white'), (3, 4): ('triangle', 'black'), (3, 5): ('circle', 'black'), (4, 0): ('circle', 'white'), (4, 1): ('circle', 'black'), (4, 2): ('triangle', 'black'), (4, 3): ('triangle', 'white'), (4, 4): ('circle', 'white'), (4, 5): ('circle', 'white'), (5, 0): ('triangle', 'black'), (5, 1): ('square', 'black'), (5, 2): ('square', 'black'), (5, 3): ('triangle', 'white'), (5, 4): ('square', 'white'), (5, 5): ('triangle', 'black'), (6, 0): ('circle', 'black'), (6, 1): ('triangle', 'white'), (6, 2): ('square', 'white'), (6, 3): ('square', 'white'), (6, 4): ('square', 'white'), (6, 5): ('triangle', 'white'), (7, 0): ('triangle', 'black'), (7, 1): ('circle', 'black'), (7, 2): ('triangle', 'black'), (7, 3): ('square', 'white'), (7, 4): ('triangle', 'black'), (7, 5): ('square', 'black'), (8, 0): ('triangle', 'black'), (8, 1): ('triangle', 'white'), (8, 2): ('circle', 'black'), (8, 3): ('circle', 'black'), (8, 4): ('square', 'black'), (8, 5): ('square', 'black')}, {(0, 0): ('circle', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('triangle', 'white'), (0, 4): ('square', 'white'), (0, 5): ('square', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('square', 'black'), (1, 2): ('circle', 'black'), (1, 3): ('triangle', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('square', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('square', 'white'), (2, 3): ('triangle', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('circle', 'black'), (3, 0): ('circle', 'black'), (3, 1): ('triangle', 'black'), (3, 2): ('triangle', 'black'), (3, 3): ('triangle', 'white'), (3, 4): ('square', 'black'), (3, 5): ('square', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('square', 'white'), (4, 2): ('triangle', 'black'), (4, 3): ('triangle', 'white'), (4, 4): ('square', 'black'), (4, 5): ('square', 'white'), (5, 0): ('square', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('triangle', 'white'), (5, 3): ('triangle', 'black'), (5, 4): ('circle', 'white'), (5, 5): ('square', 'black'), (6, 0): ('triangle', 'white'), (6, 1): ('square', 'white'), (6, 2): ('square', 'black'), (6, 3): ('circle', 'black'), (6, 4): ('triangle', 'black'), (6, 5): ('circle', 'black'), (7, 0): ('square', 'white'), (7, 1): ('circle', 'white'), (7, 2): ('circle', 'black'), (7, 3): ('circle', 'black'), (7, 4): ('circle', 'white'), (7, 5): ('square', 'white'), (8, 0): ('triangle', 'black'), (8, 1): ('triangle', 'white'), (8, 2): ('square', 'white'), (8, 3): ('square', 'white'), (8, 4): ('square', 'black'), (8, 5): ('triangle', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'black'), (0, 3): ('square', 'white'), (0, 4): ('square', 'black'), (0, 5): ('circle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('square', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('triangle', 'black'), (1, 5): ('triangle', 'white'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('square', 'white'), (2, 3): ('square', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('circle', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('circle', 'white'), (3, 2): ('square', 'white'), (3, 3): ('square', 'white'), (3, 4): ('triangle', 'black'), (3, 5): ('triangle', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('triangle', 'white'), (4, 3): ('square', 'black'), (4, 4): ('triangle', 'black'), (4, 5): ('square', 'white'), (5, 0): ('triangle', 'white'), (5, 1): ('square', 'white'), (5, 2): ('circle', 'white'), (5, 3): ('square', 'black'), (5, 4): ('triangle', 'white'), (5, 5): ('triangle', 'black'), (6, 0): ('circle', 'black'), (6, 1): ('circle', 'white'), (6, 2): ('square', 'white'), (6, 3): ('square', 'black'), (6, 4): ('circle', 'black'), (6, 5): ('triangle', 'white'), (7, 0): ('triangle', 'white'), (7, 1): ('circle', 'white'), (7, 2): ('triangle', 'white'), (7, 3): ('circle', 'black'), (7, 4): ('square', 'black'), (7, 5): ('square', 'white'), (8, 0): ('square', 'black'), (8, 1): ('circle', 'white'), (8, 2): ('square', 'white'), (8, 3): ('triangle', 'black'), (8, 4): ('triangle', 'white'), (8, 5): ('square', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('triangle', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('triangle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('square', 'white'), (1, 2): ('triangle', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('square', 'white'), (1, 5): ('square', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('square', 'black'), (2, 2): ('triangle', 'black'), (2, 3): ('square', 'black'), (2, 4): ('square', 'black'), (2, 5): ('circle', 'black'), (3, 0): ('square', 'black'), (3, 1): ('square', 'white'), (3, 2): ('circle', 'white'), (3, 3): ('circle', 'black'), (3, 4): ('triangle', 'white'), (3, 5): ('square', 'white'), (4, 0): ('triangle', 'white'), (4, 1): ('square', 'white'), (4, 2): ('circle', 'white'), (4, 3): ('circle', 'white'), (4, 4): ('square', 'white'), (4, 5): ('circle', 'black'), (5, 0): ('circle', 'black'), (5, 1): ('triangle', 'black'), (5, 2): ('square', 'white'), (5, 3): ('circle', 'black'), (5, 4): ('square', 'black'), (5, 5): ('square', 'black'), (6, 0): ('triangle', 'black'), (6, 1): ('square', 'white'), (6, 2): ('square', 'black'), (6, 3): ('square', 'black'), (6, 4): ('triangle', 'white'), (6, 5): ('circle', 'black'), (7, 0): ('square', 'white'), (7, 1): ('triangle', 'black'), (7, 2): ('triangle', 'white'), (7, 3): ('square', 'white'), (7, 4): ('square', 'black'), (7, 5): ('circle', 'white'), (8, 0): ('circle', 'black'), (8, 1): ('square', 'white'), (8, 2): ('circle', 'black'), (8, 3): ('triangle', 'white'), (8, 4): ('triangle', 'white'), (8, 5): ('circle', 'black')}, {(0, 0): ('square', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('square', 'black'), (0, 3): ('triangle', 'white'), (0, 4): ('square', 'white'), (0, 5): ('square', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('square', 'white'), (1, 3): ('square', 'black'), (1, 4): ('square', 'black'), (1, 5): ('circle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('triangle', 'black'), (2, 4): ('circle', 'white'), (2, 5): ('triangle', 'black'), (3, 0): ('circle', 'white'), (3, 1): ('circle', 'black'), (3, 2): ('square', 'white'), (3, 3): ('triangle', 'black'), (3, 4): ('triangle', 'black'), (3, 5): ('square', 'white'), (4, 0): ('square', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('circle', 'black'), (4, 3): ('triangle', 'white'), (4, 4): ('circle', 'white'), (4, 5): ('square', 'black'), (5, 0): ('circle', 'white'), (5, 1): ('square', 'black'), (5, 2): ('square', 'black'), (5, 3): ('triangle', 'black'), (5, 4): ('square', 'black'), (5, 5): ('triangle', 'white'), (6, 0): ('square', 'black'), (6, 1): ('triangle', 'white'), (6, 2): ('triangle', 'white'), (6, 3): ('triangle', 'black'), (6, 4): ('square', 'white'), (6, 5): ('triangle', 'black'), (7, 0): ('triangle', 'black'), (7, 1): ('circle', 'black'), (7, 2): ('triangle', 'black'), (7, 3): ('square', 'black'), (7, 4): ('circle', 'black'), (7, 5): ('triangle', 'black'), (8, 0): ('circle', 'white'), (8, 1): ('square', 'black'), (8, 2): ('circle', 'black'), (8, 3): ('square', 'white'), (8, 4): ('triangle', 'white'), (8, 5): ('triangle', 'black')}]","(9, 6, 5)"
+239.svg,"[{(0, 0): ('square', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('triangle', 'black'), (0, 3): ('square', 'white'), (0, 4): ('square', 'white'), (0, 5): ('triangle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('square', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('triangle', 'black'), (1, 5): ('square', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('square', 'black'), (2, 2): ('triangle', 'white'), (2, 3): ('square', 'white'), (2, 4): ('circle', 'black'), (2, 5): ('circle', 'white'), (3, 0): ('square', 'black'), (3, 1): ('circle', 'white'), (3, 2): ('triangle', 'white'), (3, 3): ('circle', 'white'), (3, 4): ('circle', 'white'), (3, 5): ('square', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('triangle', 'black'), (4, 3): ('circle', 'white'), (4, 4): ('triangle', 'white'), (4, 5): ('square', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('square', 'black'), (5, 2): ('triangle', 'black'), (5, 3): ('triangle', 'white'), (5, 4): ('triangle', 'black'), (5, 5): ('square', 'black'), (6, 0): ('square', 'black'), (6, 1): ('circle', 'black'), (6, 2): ('square', 'white'), (6, 3): ('circle', 'white'), (6, 4): ('square', 'black'), (6, 5): ('triangle', 'black'), (7, 0): ('triangle', 'white'), (7, 1): ('triangle', 'black'), (7, 2): ('square', 'black'), (7, 3): ('triangle', 'white'), (7, 4): ('circle', 'black'), (7, 5): ('square', 'white'), (8, 0): ('triangle', 'black'), (8, 1): ('circle', 'black'), (8, 2): ('triangle', 'black'), (8, 3): ('circle', 'white'), (8, 4): ('circle', 'white'), (8, 5): ('circle', 'black')}, {(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'black'), (0, 3): ('circle', 'white'), (0, 4): ('circle', 'black'), (0, 5): ('triangle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('triangle', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('square', 'black'), (2, 0): ('square', 'black'), (2, 1): ('square', 'black'), (2, 2): ('square', 'black'), (2, 3): ('triangle', 'white'), (2, 4): ('circle', 'white'), (2, 5): ('square', 'white'), (3, 0): ('triangle', 'white'), (3, 1): ('circle', 'black'), (3, 2): ('circle', 'black'), (3, 3): ('circle', 'white'), (3, 4): ('square', 'black'), (3, 5): ('circle', 'black'), (4, 0): ('square', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('circle', 'black'), (4, 3): ('triangle', 'black'), (4, 4): ('square', 'white'), (4, 5): ('square', 'black'), (5, 0): ('triangle', 'white'), (5, 1): ('square', 'white'), (5, 2): ('circle', 'white'), (5, 3): ('circle', 'black'), (5, 4): ('square', 'white'), (5, 5): ('circle', 'black'), (6, 0): ('circle', 'white'), (6, 1): ('circle', 'white'), (6, 2): ('square', 'white'), (6, 3): ('triangle', 'white'), (6, 4): ('circle', 'white'), (6, 5): ('circle', 'white'), (7, 0): ('circle', 'white'), (7, 1): ('circle', 'white'), (7, 2): ('triangle', 'black'), (7, 3): ('square', 'black'), (7, 4): ('circle', 'black'), (7, 5): ('triangle', 'white'), (8, 0): ('square', 'black'), (8, 1): ('triangle', 'white'), (8, 2): ('circle', 'white'), (8, 3): ('square', 'white'), (8, 4): ('triangle', 'black'), (8, 5): ('triangle', 'black')}, {(0, 0): ('square', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('square', 'black'), (0, 3): ('triangle', 'white'), (0, 4): ('square', 'white'), (0, 5): ('triangle', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('circle', 'white'), (1, 3): ('triangle', 'white'), (1, 4): ('square', 'black'), (1, 5): ('square', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('triangle', 'black'), (2, 4): ('circle', 'white'), (2, 5): ('square', 'black'), (3, 0): ('triangle', 'white'), (3, 1): ('triangle', 'white'), (3, 2): ('circle', 'white'), (3, 3): ('circle', 'white'), (3, 4): ('square', 'black'), (3, 5): ('circle', 'white'), (4, 0): ('triangle', 'white'), (4, 1): ('circle', 'black'), (4, 2): ('circle', 'black'), (4, 3): ('circle', 'black'), (4, 4): ('triangle', 'white'), (4, 5): ('circle', 'white'), (5, 0): ('square', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('square', 'white'), (5, 3): ('circle', 'white'), (5, 4): ('triangle', 'white'), (5, 5): ('circle', 'white'), (6, 0): ('square', 'white'), (6, 1): ('square', 'white'), (6, 2): ('triangle', 'black'), (6, 3): ('square', 'white'), (6, 4): ('triangle', 'white'), (6, 5): ('circle', 'black'), (7, 0): ('triangle', 'black'), (7, 1): ('square', 'white'), (7, 2): ('square', 'white'), (7, 3): ('triangle', 'black'), (7, 4): ('triangle', 'black'), (7, 5): ('circle', 'black'), (8, 0): ('triangle', 'white'), (8, 1): ('square', 'black'), (8, 2): ('circle', 'white'), (8, 3): ('triangle', 'black'), (8, 4): ('square', 'black'), (8, 5): ('circle', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('square', 'white'), (0, 2): ('triangle', 'black'), (0, 3): ('circle', 'white'), (0, 4): ('circle', 'white'), (0, 5): ('circle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('triangle', 'white'), (1, 5): ('triangle', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('triangle', 'black'), (2, 3): ('square', 'white'), (2, 4): ('circle', 'black'), (2, 5): ('triangle', 'white'), (3, 0): ('square', 'black'), (3, 1): ('square', 'black'), (3, 2): ('triangle', 'white'), (3, 3): ('circle', 'white'), (3, 4): ('triangle', 'black'), (3, 5): ('triangle', 'white'), (4, 0): ('circle', 'black'), (4, 1): ('triangle', 'black'), (4, 2): ('square', 'black'), (4, 3): ('circle', 'white'), (4, 4): ('square', 'black'), (4, 5): ('square', 'white'), (5, 0): ('circle', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('square', 'black'), (5, 3): ('circle', 'white'), (5, 4): ('triangle', 'white'), (5, 5): ('square', 'white'), (6, 0): ('circle', 'black'), (6, 1): ('triangle', 'black'), (6, 2): ('square', 'white'), (6, 3): ('circle', 'white'), (6, 4): ('square', 'white'), (6, 5): ('triangle', 'black'), (7, 0): ('circle', 'white'), (7, 1): ('square', 'black'), (7, 2): ('square', 'black'), (7, 3): ('circle', 'black'), (7, 4): ('triangle', 'white'), (7, 5): ('triangle', 'black'), (8, 0): ('square', 'black'), (8, 1): ('circle', 'black'), (8, 2): ('square', 'white'), (8, 3): ('circle', 'white'), (8, 4): ('triangle', 'white'), (8, 5): ('circle', 'black')}, {(0, 0): ('square', 'black'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('triangle', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('circle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('triangle', 'black'), (1, 5): ('triangle', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('square', 'black'), (2, 3): ('triangle', 'white'), (2, 4): ('circle', 'black'), (2, 5): ('square', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('circle', 'white'), (3, 2): ('triangle', 'white'), (3, 3): ('triangle', 'white'), (3, 4): ('circle', 'white'), (3, 5): ('triangle', 'white'), (4, 0): ('square', 'black'), (4, 1): ('circle', 'white'), (4, 2): ('triangle', 'black'), (4, 3): ('circle', 'white'), (4, 4): ('triangle', 'white'), (4, 5): ('square', 'white'), (5, 0): ('square', 'white'), (5, 1): ('triangle', 'white'), (5, 2): ('circle', 'black'), (5, 3): ('triangle', 'white'), (5, 4): ('square', 'white'), (5, 5): ('circle', 'white'), (6, 0): ('triangle', 'black'), (6, 1): ('triangle', 'black'), (6, 2): ('triangle', 'black'), (6, 3): ('circle', 'white'), (6, 4): ('triangle', 'white'), (6, 5): ('circle', 'black'), (7, 0): ('triangle', 'white'), (7, 1): ('square', 'white'), (7, 2): ('triangle', 'white'), (7, 3): ('square', 'black'), (7, 4): ('square', 'white'), (7, 5): ('circle', 'black'), (8, 0): ('circle', 'black'), (8, 1): ('circle', 'black'), (8, 2): ('square', 'white'), (8, 3): ('circle', 'white'), (8, 4): ('circle', 'black'), (8, 5): ('triangle', 'white')}]","(9, 6, 5)"
+240.svg,"[{(0, 0): ('triangle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'white'), (0, 3): ('triangle', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('circle', 'black'), (0, 6): ('circle', 'black'), (0, 7): ('triangle', 'white'), (0, 8): ('triangle', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'black'), (1, 3): ('square', 'white'), (1, 4): ('triangle', 'black'), (1, 5): ('square', 'white'), (1, 6): ('triangle', 'black'), (1, 7): ('square', 'black'), (1, 8): ('circle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('triangle', 'black'), (2, 4): ('circle', 'white'), (2, 5): ('triangle', 'black'), (2, 6): ('triangle', 'white'), (2, 7): ('circle', 'black'), (2, 8): ('square', 'white'), (3, 0): ('square', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('square', 'black'), (3, 3): ('triangle', 'black'), (3, 4): ('triangle', 'black'), (3, 5): ('circle', 'white'), (3, 6): ('square', 'black'), (3, 7): ('square', 'black'), (3, 8): ('square', 'white'), (4, 0): ('square', 'white'), (4, 1): ('triangle', 'black'), (4, 2): ('circle', 'black'), (4, 3): ('circle', 'black'), (4, 4): ('circle', 'black'), (4, 5): ('triangle', 'white'), (4, 6): ('triangle', 'white'), (4, 7): ('circle', 'black'), (4, 8): ('triangle', 'black'), (5, 0): ('triangle', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('square', 'white'), (5, 3): ('triangle', 'black'), (5, 4): ('circle', 'white'), (5, 5): ('triangle', 'black'), (5, 6): ('circle', 'black'), (5, 7): ('triangle', 'white'), (5, 8): ('circle', 'white'), (6, 0): ('square', 'white'), (6, 1): ('triangle', 'white'), (6, 2): ('square', 'black'), (6, 3): ('circle', 'black'), (6, 4): ('circle', 'white'), (6, 5): ('circle', 'white'), (6, 6): ('triangle', 'black'), (6, 7): ('circle', 'white'), (6, 8): ('circle', 'white'), (7, 0): ('triangle', 'black'), (7, 1): ('circle', 'black'), (7, 2): ('circle', 'black'), (7, 3): ('circle', 'black'), (7, 4): ('square', 'black'), (7, 5): ('circle', 'black'), (7, 6): ('square', 'black'), (7, 7): ('triangle', 'black'), (7, 8): ('circle', 'black'), (8, 0): ('triangle', 'black'), (8, 1): ('triangle', 'black'), (8, 2): ('circle', 'black'), (8, 3): ('square', 'black'), (8, 4): ('circle', 'black'), (8, 5): ('circle', 'black'), (8, 6): ('triangle', 'black'), (8, 7): ('square', 'black'), (8, 8): ('triangle', 'black')}]","(9, 9, 1)"
+241.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('circle', 'black'), (0, 5): ('square', 'white'), (0, 6): ('circle', 'black'), (0, 7): ('triangle', 'white'), (0, 8): ('square', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('square', 'black'), (1, 2): ('square', 'black'), (1, 3): ('circle', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('triangle', 'black'), (1, 6): ('circle', 'white'), (1, 7): ('triangle', 'white'), (1, 8): ('circle', 'white'), (2, 0): ('square', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('square', 'black'), (2, 3): ('square', 'white'), (2, 4): ('circle', 'black'), (2, 5): ('circle', 'black'), (2, 6): ('square', 'black'), (2, 7): ('triangle', 'white'), (2, 8): ('square', 'black'), (3, 0): ('circle', 'black'), (3, 1): ('circle', 'white'), (3, 2): ('square', 'black'), (3, 3): ('triangle', 'black'), (3, 4): ('triangle', 'white'), (3, 5): ('triangle', 'white'), (3, 6): ('triangle', 'black'), (3, 7): ('circle', 'black'), (3, 8): ('square', 'white'), (4, 0): ('triangle', 'white'), (4, 1): ('square', 'white'), (4, 2): ('triangle', 'white'), (4, 3): ('triangle', 'black'), (4, 4): ('square', 'black'), (4, 5): ('square', 'black'), (4, 6): ('square', 'black'), (4, 7): ('square', 'black'), (4, 8): ('circle', 'black'), (5, 0): ('square', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('triangle', 'black'), (5, 3): ('triangle', 'black'), (5, 4): ('square', 'white'), (5, 5): ('triangle', 'black'), (5, 6): ('triangle', 'white'), (5, 7): ('circle', 'white'), (5, 8): ('triangle', 'white'), (6, 0): ('circle', 'white'), (6, 1): ('circle', 'white'), (6, 2): ('triangle', 'black'), (6, 3): ('square', 'white'), (6, 4): ('triangle', 'black'), (6, 5): ('square', 'white'), (6, 6): ('triangle', 'white'), (6, 7): ('triangle', 'black'), (6, 8): ('triangle', 'white'), (7, 0): ('square', 'white'), (7, 1): ('circle', 'white'), (7, 2): ('circle', 'white'), (7, 3): ('triangle', 'black'), (7, 4): ('circle', 'white'), (7, 5): ('square', 'white'), (7, 6): ('square', 'white'), (7, 7): ('triangle', 'white'), (7, 8): ('triangle', 'white'), (8, 0): ('triangle', 'black'), (8, 1): ('triangle', 'black'), (8, 2): ('circle', 'white'), (8, 3): ('square', 'black'), (8, 4): ('triangle', 'white'), (8, 5): ('square', 'black'), (8, 6): ('circle', 'white'), (8, 7): ('circle', 'black'), (8, 8): ('circle', 'black')}]","(9, 9, 1)"
+242.svg,"[{(0, 0): ('triangle', 'white'), (0, 1): ('square', 'black'), (0, 2): ('square', 'black'), (0, 3): ('square', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('square', 'white'), (0, 6): ('square', 'black'), (0, 7): ('circle', 'black'), (0, 8): ('square', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'black'), (1, 3): ('triangle', 'black'), (1, 4): ('triangle', 'white'), (1, 5): ('circle', 'white'), (1, 6): ('triangle', 'black'), (1, 7): ('triangle', 'black'), (1, 8): ('triangle', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('square', 'black'), (2, 2): ('triangle', 'white'), (2, 3): ('triangle', 'white'), (2, 4): ('circle', 'black'), (2, 5): ('triangle', 'black'), (2, 6): ('square', 'white'), (2, 7): ('triangle', 'black'), (2, 8): ('square', 'white'), (3, 0): ('square', 'white'), (3, 1): ('triangle', 'black'), (3, 2): ('triangle', 'white'), (3, 3): ('triangle', 'black'), (3, 4): ('circle', 'black'), (3, 5): ('triangle', 'white'), (3, 6): ('square', 'black'), (3, 7): ('triangle', 'black'), (3, 8): ('circle', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('square', 'black'), (4, 2): ('square', 'white'), (4, 3): ('triangle', 'white'), (4, 4): ('triangle', 'white'), (4, 5): ('square', 'white'), (4, 6): ('triangle', 'white'), (4, 7): ('circle', 'black'), (4, 8): ('square', 'black'), (5, 0): ('square', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('triangle', 'black'), (5, 3): ('circle', 'black'), (5, 4): ('triangle', 'white'), (5, 5): ('triangle', 'black'), (5, 6): ('circle', 'white'), (5, 7): ('triangle', 'black'), (5, 8): ('triangle', 'white'), (6, 0): ('square', 'white'), (6, 1): ('square', 'white'), (6, 2): ('triangle', 'white'), (6, 3): ('circle', 'white'), (6, 4): ('square', 'white'), (6, 5): ('triangle', 'white'), (6, 6): ('circle', 'white'), (6, 7): ('square', 'white'), (6, 8): ('circle', 'white'), (7, 0): ('circle', 'white'), (7, 1): ('circle', 'white'), (7, 2): ('circle', 'black'), (7, 3): ('circle', 'white'), (7, 4): ('circle', 'black'), (7, 5): ('triangle', 'white'), (7, 6): ('circle', 'black'), (7, 7): ('triangle', 'white'), (7, 8): ('circle', 'white'), (8, 0): ('square', 'white'), (8, 1): ('triangle', 'black'), (8, 2): ('triangle', 'white'), (8, 3): ('square', 'white'), (8, 4): ('square', 'white'), (8, 5): ('square', 'black'), (8, 6): ('triangle', 'black'), (8, 7): ('circle', 'black'), (8, 8): ('square', 'black')}]","(9, 9, 1)"
+243.svg,"[{(0, 0): ('triangle', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('square', 'white'), (0, 3): ('triangle', 'black'), (0, 4): ('circle', 'black'), (0, 5): ('triangle', 'white'), (0, 6): ('square', 'black'), (0, 7): ('square', 'white'), (0, 8): ('square', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('square', 'white'), (1, 3): ('square', 'white'), (1, 4): ('square', 'white'), (1, 5): ('square', 'white'), (1, 6): ('triangle', 'white'), (1, 7): ('circle', 'black'), (1, 8): ('triangle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'black'), (2, 2): ('triangle', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('triangle', 'white'), (2, 5): ('triangle', 'white'), (2, 6): ('square', 'black'), (2, 7): ('triangle', 'white'), (2, 8): ('triangle', 'black'), (3, 0): ('circle', 'white'), (3, 1): ('triangle', 'black'), (3, 2): ('circle', 'black'), (3, 3): ('triangle', 'black'), (3, 4): ('triangle', 'black'), (3, 5): ('square', 'black'), (3, 6): ('triangle', 'white'), (3, 7): ('triangle', 'white'), (3, 8): ('circle', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('circle', 'white'), (4, 2): ('triangle', 'black'), (4, 3): ('square', 'black'), (4, 4): ('circle', 'white'), (4, 5): ('triangle', 'white'), (4, 6): ('triangle', 'white'), (4, 7): ('circle', 'black'), (4, 8): ('square', 'white'), (5, 0): ('square', 'black'), (5, 1): ('triangle', 'white'), (5, 2): ('circle', 'white'), (5, 3): ('circle', 'white'), (5, 4): ('triangle', 'white'), (5, 5): ('square', 'black'), (5, 6): ('triangle', 'white'), (5, 7): ('square', 'white'), (5, 8): ('triangle', 'white'), (6, 0): ('circle', 'black'), (6, 1): ('square', 'white'), (6, 2): ('circle', 'black'), (6, 3): ('triangle', 'white'), (6, 4): ('triangle', 'white'), (6, 5): ('triangle', 'black'), (6, 6): ('circle', 'white'), (6, 7): ('square', 'white'), (6, 8): ('triangle', 'white'), (7, 0): ('square', 'white'), (7, 1): ('triangle', 'black'), (7, 2): ('triangle', 'black'), (7, 3): ('square', 'white'), (7, 4): ('circle', 'white'), (7, 5): ('triangle', 'white'), (7, 6): ('square', 'white'), (7, 7): ('triangle', 'black'), (7, 8): ('triangle', 'white'), (8, 0): ('triangle', 'white'), (8, 1): ('circle', 'white'), (8, 2): ('circle', 'black'), (8, 3): ('square', 'black'), (8, 4): ('square', 'black'), (8, 5): ('circle', 'white'), (8, 6): ('square', 'white'), (8, 7): ('triangle', 'white'), (8, 8): ('circle', 'black')}]","(9, 9, 1)"
+244.svg,"[{(0, 0): ('triangle', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'white'), (0, 3): ('triangle', 'white'), (0, 4): ('triangle', 'white'), (0, 5): ('circle', 'white'), (0, 6): ('triangle', 'white'), (0, 7): ('triangle', 'white'), (0, 8): ('circle', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('square', 'black'), (1, 2): ('triangle', 'black'), (1, 3): ('square', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('circle', 'black'), (1, 6): ('circle', 'white'), (1, 7): ('triangle', 'white'), (1, 8): ('circle', 'white'), (2, 0): ('square', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('circle', 'white'), (2, 3): ('triangle', 'white'), (2, 4): ('circle', 'black'), (2, 5): ('triangle', 'black'), (2, 6): ('circle', 'white'), (2, 7): ('square', 'black'), (2, 8): ('square', 'black'), (3, 0): ('square', 'black'), (3, 1): ('square', 'black'), (3, 2): ('square', 'black'), (3, 3): ('triangle', 'white'), (3, 4): ('circle', 'white'), (3, 5): ('circle', 'black'), (3, 6): ('triangle', 'white'), (3, 7): ('triangle', 'black'), (3, 8): ('triangle', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('square', 'white'), (4, 2): ('square', 'white'), (4, 3): ('circle', 'white'), (4, 4): ('triangle', 'black'), (4, 5): ('square', 'white'), (4, 6): ('triangle', 'white'), (4, 7): ('triangle', 'black'), (4, 8): ('triangle', 'white'), (5, 0): ('circle', 'white'), (5, 1): ('triangle', 'black'), (5, 2): ('circle', 'white'), (5, 3): ('square', 'black'), (5, 4): ('circle', 'white'), (5, 5): ('triangle', 'white'), (5, 6): ('square', 'white'), (5, 7): ('square', 'white'), (5, 8): ('triangle', 'white'), (6, 0): ('square', 'black'), (6, 1): ('square', 'white'), (6, 2): ('triangle', 'white'), (6, 3): ('circle', 'white'), (6, 4): ('square', 'black'), (6, 5): ('square', 'black'), (6, 6): ('square', 'white'), (6, 7): ('triangle', 'black'), (6, 8): ('triangle', 'white'), (7, 0): ('triangle', 'black'), (7, 1): ('triangle', 'white'), (7, 2): ('square', 'black'), (7, 3): ('square', 'white'), (7, 4): ('circle', 'black'), (7, 5): ('circle', 'black'), (7, 6): ('triangle', 'black'), (7, 7): ('triangle', 'black'), (7, 8): ('triangle', 'white'), (8, 0): ('triangle', 'black'), (8, 1): ('square', 'black'), (8, 2): ('triangle', 'black'), (8, 3): ('triangle', 'black'), (8, 4): ('circle', 'black'), (8, 5): ('triangle', 'black'), (8, 6): ('circle', 'black'), (8, 7): ('circle', 'black'), (8, 8): ('triangle', 'black')}]","(9, 9, 1)"
+245.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('circle', 'white'), (0, 4): ('square', 'black'), (0, 5): ('square', 'white'), (0, 6): ('circle', 'black'), (0, 7): ('triangle', 'white'), (0, 8): ('triangle', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('circle', 'black'), (1, 3): ('circle', 'white'), (1, 4): ('square', 'white'), (1, 5): ('triangle', 'white'), (1, 6): ('circle', 'black'), (1, 7): ('circle', 'white'), (1, 8): ('circle', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('circle', 'black'), (2, 5): ('triangle', 'black'), (2, 6): ('circle', 'white'), (2, 7): ('triangle', 'black'), (2, 8): ('circle', 'white'), (3, 0): ('square', 'white'), (3, 1): ('triangle', 'white'), (3, 2): ('square', 'black'), (3, 3): ('square', 'black'), (3, 4): ('circle', 'white'), (3, 5): ('triangle', 'black'), (3, 6): ('triangle', 'black'), (3, 7): ('triangle', 'white'), (3, 8): ('circle', 'white'), (4, 0): ('triangle', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('circle', 'white'), (4, 3): ('square', 'black'), (4, 4): ('circle', 'black'), (4, 5): ('triangle', 'white'), (4, 6): ('triangle', 'black'), (4, 7): ('circle', 'black'), (4, 8): ('triangle', 'white'), (5, 0): ('square', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('circle', 'black'), (5, 3): ('triangle', 'black'), (5, 4): ('square', 'white'), (5, 5): ('triangle', 'white'), (5, 6): ('circle', 'black'), (5, 7): ('circle', 'black'), (5, 8): ('triangle', 'white'), (6, 0): ('circle', 'white'), (6, 1): ('circle', 'white'), (6, 2): ('triangle', 'white'), (6, 3): ('square', 'black'), (6, 4): ('square', 'black'), (6, 5): ('triangle', 'black'), (6, 6): ('circle', 'white'), (6, 7): ('square', 'black'), (6, 8): ('square', 'black'), (7, 0): ('triangle', 'black'), (7, 1): ('square', 'black'), (7, 2): ('square', 'white'), (7, 3): ('triangle', 'white'), (7, 4): ('circle', 'white'), (7, 5): ('square', 'white'), (7, 6): ('circle', 'white'), (7, 7): ('circle', 'white'), (7, 8): ('circle', 'white'), (8, 0): ('square', 'white'), (8, 1): ('circle', 'white'), (8, 2): ('circle', 'white'), (8, 3): ('square', 'black'), (8, 4): ('triangle', 'white'), (8, 5): ('square', 'white'), (8, 6): ('square', 'white'), (8, 7): ('circle', 'black'), (8, 8): ('triangle', 'white')}]","(9, 9, 1)"
+246.svg,"[{(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('square', 'white'), (0, 3): ('square', 'white'), (0, 4): ('square', 'white'), (0, 5): ('circle', 'black'), (0, 6): ('square', 'white'), (0, 7): ('circle', 'white'), (0, 8): ('circle', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('triangle', 'black'), (1, 3): ('triangle', 'black'), (1, 4): ('square', 'white'), (1, 5): ('triangle', 'black'), (1, 6): ('circle', 'white'), (1, 7): ('square', 'black'), (1, 8): ('square', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('triangle', 'black'), (2, 3): ('triangle', 'black'), (2, 4): ('square', 'black'), (2, 5): ('triangle', 'black'), (2, 6): ('square', 'black'), (2, 7): ('triangle', 'white'), (2, 8): ('triangle', 'black'), (3, 0): ('circle', 'white'), (3, 1): ('circle', 'white'), (3, 2): ('square', 'white'), (3, 3): ('square', 'black'), (3, 4): ('triangle', 'black'), (3, 5): ('triangle', 'black'), (3, 6): ('triangle', 'black'), (3, 7): ('triangle', 'black'), (3, 8): ('circle', 'white'), (4, 0): ('square', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('square', 'black'), (4, 3): ('circle', 'black'), (4, 4): ('square', 'black'), (4, 5): ('square', 'white'), (4, 6): ('triangle', 'white'), (4, 7): ('triangle', 'white'), (4, 8): ('square', 'black'), (5, 0): ('circle', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('circle', 'black'), (5, 3): ('triangle', 'white'), (5, 4): ('square', 'white'), (5, 5): ('square', 'black'), (5, 6): ('triangle', 'black'), (5, 7): ('square', 'black'), (5, 8): ('square', 'black'), (6, 0): ('triangle', 'white'), (6, 1): ('circle', 'black'), (6, 2): ('triangle', 'white'), (6, 3): ('triangle', 'black'), (6, 4): ('circle', 'white'), (6, 5): ('triangle', 'black'), (6, 6): ('square', 'black'), (6, 7): ('circle', 'white'), (6, 8): ('square', 'black'), (7, 0): ('circle', 'white'), (7, 1): ('triangle', 'white'), (7, 2): ('circle', 'black'), (7, 3): ('circle', 'white'), (7, 4): ('circle', 'black'), (7, 5): ('triangle', 'white'), (7, 6): ('circle', 'white'), (7, 7): ('triangle', 'white'), (7, 8): ('square', 'black'), (8, 0): ('circle', 'black'), (8, 1): ('triangle', 'white'), (8, 2): ('square', 'white'), (8, 3): ('circle', 'white'), (8, 4): ('circle', 'black'), (8, 5): ('triangle', 'white'), (8, 6): ('circle', 'black'), (8, 7): ('square', 'black'), (8, 8): ('circle', 'black')}]","(9, 9, 1)"
+247.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('square', 'white'), (0, 2): ('square', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('triangle', 'black'), (0, 6): ('circle', 'black'), (0, 7): ('circle', 'black'), (0, 8): ('square', 'black'), (1, 0): ('square', 'white'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'black'), (1, 3): ('square', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('triangle', 'black'), (1, 6): ('circle', 'white'), (1, 7): ('circle', 'white'), (1, 8): ('square', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('square', 'black'), (2, 2): ('triangle', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('square', 'black'), (2, 5): ('square', 'white'), (2, 6): ('square', 'white'), (2, 7): ('square', 'white'), (2, 8): ('circle', 'white'), (3, 0): ('triangle', 'white'), (3, 1): ('square', 'black'), (3, 2): ('square', 'black'), (3, 3): ('circle', 'black'), (3, 4): ('triangle', 'black'), (3, 5): ('triangle', 'white'), (3, 6): ('circle', 'black'), (3, 7): ('square', 'black'), (3, 8): ('triangle', 'white'), (4, 0): ('circle', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('triangle', 'white'), (4, 3): ('square', 'black'), (4, 4): ('square', 'black'), (4, 5): ('square', 'black'), (4, 6): ('square', 'white'), (4, 7): ('triangle', 'black'), (4, 8): ('circle', 'white'), (5, 0): ('triangle', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('triangle', 'black'), (5, 3): ('circle', 'white'), (5, 4): ('triangle', 'black'), (5, 5): ('triangle', 'black'), (5, 6): ('circle', 'black'), (5, 7): ('triangle', 'black'), (5, 8): ('circle', 'black'), (6, 0): ('circle', 'black'), (6, 1): ('circle', 'black'), (6, 2): ('circle', 'black'), (6, 3): ('triangle', 'black'), (6, 4): ('circle', 'black'), (6, 5): ('circle', 'white'), (6, 6): ('triangle', 'white'), (6, 7): ('square', 'black'), (6, 8): ('circle', 'black'), (7, 0): ('square', 'black'), (7, 1): ('circle', 'black'), (7, 2): ('square', 'white'), (7, 3): ('triangle', 'white'), (7, 4): ('triangle', 'black'), (7, 5): ('triangle', 'black'), (7, 6): ('square', 'white'), (7, 7): ('triangle', 'black'), (7, 8): ('triangle', 'white'), (8, 0): ('triangle', 'white'), (8, 1): ('triangle', 'white'), (8, 2): ('square', 'white'), (8, 3): ('square', 'white'), (8, 4): ('circle', 'black'), (8, 5): ('square', 'black'), (8, 6): ('square', 'white'), (8, 7): ('square', 'white'), (8, 8): ('triangle', 'white')}]","(9, 9, 1)"
+248.svg,"[{(0, 0): ('triangle', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('square', 'white'), (0, 4): ('triangle', 'black'), (0, 5): ('square', 'white'), (0, 6): ('square', 'black'), (0, 7): ('triangle', 'black'), (0, 8): ('square', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'black'), (1, 3): ('square', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('circle', 'black'), (1, 6): ('square', 'white'), (1, 7): ('triangle', 'white'), (1, 8): ('triangle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('circle', 'white'), (2, 3): ('triangle', 'white'), (2, 4): ('circle', 'black'), (2, 5): ('square', 'black'), (2, 6): ('circle', 'white'), (2, 7): ('triangle', 'black'), (2, 8): ('circle', 'black'), (3, 0): ('square', 'white'), (3, 1): ('triangle', 'white'), (3, 2): ('circle', 'black'), (3, 3): ('triangle', 'white'), (3, 4): ('square', 'black'), (3, 5): ('square', 'white'), (3, 6): ('square', 'black'), (3, 7): ('triangle', 'black'), (3, 8): ('square', 'black'), (4, 0): ('circle', 'white'), (4, 1): ('triangle', 'black'), (4, 2): ('circle', 'black'), (4, 3): ('circle', 'white'), (4, 4): ('triangle', 'white'), (4, 5): ('circle', 'black'), (4, 6): ('circle', 'white'), (4, 7): ('circle', 'black'), (4, 8): ('circle', 'black'), (5, 0): ('triangle', 'black'), (5, 1): ('square', 'black'), (5, 2): ('triangle', 'white'), (5, 3): ('square', 'white'), (5, 4): ('square', 'black'), (5, 5): ('triangle', 'black'), (5, 6): ('triangle', 'white'), (5, 7): ('square', 'black'), (5, 8): ('square', 'black'), (6, 0): ('triangle', 'black'), (6, 1): ('circle', 'white'), (6, 2): ('circle', 'black'), (6, 3): ('circle', 'black'), (6, 4): ('square', 'white'), (6, 5): ('square', 'black'), (6, 6): ('triangle', 'white'), (6, 7): ('square', 'black'), (6, 8): ('circle', 'white'), (7, 0): ('square', 'black'), (7, 1): ('circle', 'black'), (7, 2): ('square', 'white'), (7, 3): ('triangle', 'black'), (7, 4): ('triangle', 'white'), (7, 5): ('triangle', 'black'), (7, 6): ('circle', 'black'), (7, 7): ('circle', 'black'), (7, 8): ('triangle', 'black'), (8, 0): ('square', 'white'), (8, 1): ('square', 'white'), (8, 2): ('triangle', 'white'), (8, 3): ('square', 'black'), (8, 4): ('triangle', 'white'), (8, 5): ('triangle', 'black'), (8, 6): ('triangle', 'black'), (8, 7): ('circle', 'white'), (8, 8): ('square', 'black')}]","(9, 9, 1)"
+249.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'white'), (0, 3): ('triangle', 'white'), (0, 4): ('square', 'white'), (0, 5): ('circle', 'black'), (0, 6): ('circle', 'black'), (0, 7): ('square', 'white'), (0, 8): ('square', 'white'), (1, 0): ('square', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('square', 'black'), (1, 6): ('square', 'white'), (1, 7): ('triangle', 'white'), (1, 8): ('square', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('square', 'black'), (2, 2): ('square', 'white'), (2, 3): ('circle', 'black'), (2, 4): ('square', 'black'), (2, 5): ('triangle', 'white'), (2, 6): ('circle', 'white'), (2, 7): ('triangle', 'white'), (2, 8): ('triangle', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('square', 'black'), (3, 3): ('triangle', 'white'), (3, 4): ('triangle', 'black'), (3, 5): ('circle', 'black'), (3, 6): ('triangle', 'white'), (3, 7): ('square', 'white'), (3, 8): ('triangle', 'white'), (4, 0): ('circle', 'black'), (4, 1): ('square', 'black'), (4, 2): ('square', 'white'), (4, 3): ('triangle', 'black'), (4, 4): ('circle', 'white'), (4, 5): ('circle', 'white'), (4, 6): ('triangle', 'black'), (4, 7): ('circle', 'white'), (4, 8): ('circle', 'white'), (5, 0): ('circle', 'white'), (5, 1): ('triangle', 'black'), (5, 2): ('square', 'black'), (5, 3): ('triangle', 'black'), (5, 4): ('circle', 'white'), (5, 5): ('circle', 'white'), (5, 6): ('circle', 'white'), (5, 7): ('triangle', 'black'), (5, 8): ('triangle', 'black'), (6, 0): ('circle', 'white'), (6, 1): ('square', 'white'), (6, 2): ('triangle', 'black'), (6, 3): ('circle', 'white'), (6, 4): ('square', 'black'), (6, 5): ('triangle', 'black'), (6, 6): ('square', 'white'), (6, 7): ('square', 'white'), (6, 8): ('square', 'black'), (7, 0): ('triangle', 'white'), (7, 1): ('triangle', 'black'), (7, 2): ('triangle', 'black'), (7, 3): ('square', 'white'), (7, 4): ('triangle', 'white'), (7, 5): ('square', 'black'), (7, 6): ('circle', 'white'), (7, 7): ('square', 'white'), (7, 8): ('circle', 'black'), (8, 0): ('circle', 'black'), (8, 1): ('circle', 'white'), (8, 2): ('square', 'white'), (8, 3): ('circle', 'black'), (8, 4): ('circle', 'white'), (8, 5): ('circle', 'white'), (8, 6): ('square', 'white'), (8, 7): ('square', 'white'), (8, 8): ('triangle', 'black')}]","(9, 9, 1)"
+250.svg,"[{(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('square', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('circle', 'white'), (0, 6): ('triangle', 'white'), (0, 7): ('triangle', 'black'), (0, 8): ('square', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('triangle', 'white'), (1, 4): ('triangle', 'black'), (1, 5): ('circle', 'white'), (1, 6): ('circle', 'black'), (1, 7): ('circle', 'white'), (1, 8): ('square', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('triangle', 'black'), (2, 3): ('triangle', 'black'), (2, 4): ('circle', 'black'), (2, 5): ('circle', 'white'), (2, 6): ('square', 'white'), (2, 7): ('square', 'black'), (2, 8): ('circle', 'white'), (3, 0): ('triangle', 'white'), (3, 1): ('square', 'black'), (3, 2): ('square', 'white'), (3, 3): ('circle', 'black'), (3, 4): ('triangle', 'black'), (3, 5): ('triangle', 'black'), (3, 6): ('triangle', 'black'), (3, 7): ('square', 'white'), (3, 8): ('circle', 'black'), (4, 0): ('square', 'black'), (4, 1): ('triangle', 'white'), (4, 2): ('circle', 'white'), (4, 3): ('triangle', 'black'), (4, 4): ('triangle', 'white'), (4, 5): ('square', 'white'), (4, 6): ('square', 'black'), (4, 7): ('square', 'white'), (4, 8): ('circle', 'white'), (5, 0): ('circle', 'white'), (5, 1): ('square', 'white'), (5, 2): ('triangle', 'white'), (5, 3): ('triangle', 'black'), (5, 4): ('square', 'white'), (5, 5): ('circle', 'black'), (5, 6): ('triangle', 'white'), (5, 7): ('triangle', 'white'), (5, 8): ('triangle', 'black'), (6, 0): ('triangle', 'black'), (6, 1): ('square', 'black'), (6, 2): ('circle', 'black'), (6, 3): ('triangle', 'black'), (6, 4): ('triangle', 'white'), (6, 5): ('triangle', 'white'), (6, 6): ('triangle', 'white'), (6, 7): ('triangle', 'black'), (6, 8): ('triangle', 'white'), (7, 0): ('square', 'black'), (7, 1): ('circle', 'black'), (7, 2): ('circle', 'black'), (7, 3): ('circle', 'white'), (7, 4): ('square', 'white'), (7, 5): ('square', 'black'), (7, 6): ('circle', 'black'), (7, 7): ('triangle', 'white'), (7, 8): ('triangle', 'black'), (8, 0): ('square', 'black'), (8, 1): ('triangle', 'white'), (8, 2): ('triangle', 'white'), (8, 3): ('square', 'white'), (8, 4): ('triangle', 'black'), (8, 5): ('square', 'white'), (8, 6): ('triangle', 'white'), (8, 7): ('circle', 'black'), (8, 8): ('triangle', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('circle', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('circle', 'black'), (0, 5): ('triangle', 'black'), (0, 6): ('circle', 'white'), (0, 7): ('square', 'black'), (0, 8): ('circle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('square', 'black'), (1, 5): ('square', 'white'), (1, 6): ('triangle', 'black'), (1, 7): ('square', 'black'), (1, 8): ('square', 'white'), (2, 0): ('square', 'black'), (2, 1): ('square', 'white'), (2, 2): ('square', 'black'), (2, 3): ('triangle', 'white'), (2, 4): ('square', 'white'), (2, 5): ('square', 'white'), (2, 6): ('triangle', 'black'), (2, 7): ('square', 'white'), (2, 8): ('circle', 'white'), (3, 0): ('triangle', 'black'), (3, 1): ('square', 'black'), (3, 2): ('square', 'white'), (3, 3): ('circle', 'black'), (3, 4): ('square', 'white'), (3, 5): ('circle', 'white'), (3, 6): ('circle', 'black'), (3, 7): ('circle', 'white'), (3, 8): ('triangle', 'white'), (4, 0): ('triangle', 'white'), (4, 1): ('circle', 'black'), (4, 2): ('square', 'black'), (4, 3): ('circle', 'black'), (4, 4): ('triangle', 'white'), (4, 5): ('square', 'white'), (4, 6): ('triangle', 'black'), (4, 7): ('square', 'black'), (4, 8): ('triangle', 'black'), (5, 0): ('circle', 'white'), (5, 1): ('triangle', 'white'), (5, 2): ('square', 'white'), (5, 3): ('triangle', 'white'), (5, 4): ('square', 'black'), (5, 5): ('triangle', 'white'), (5, 6): ('circle', 'white'), (5, 7): ('square', 'white'), (5, 8): ('triangle', 'white'), (6, 0): ('triangle', 'black'), (6, 1): ('circle', 'black'), (6, 2): ('triangle', 'white'), (6, 3): ('circle', 'black'), (6, 4): ('square', 'white'), (6, 5): ('circle', 'black'), (6, 6): ('circle', 'black'), (6, 7): ('triangle', 'black'), (6, 8): ('square', 'white'), (7, 0): ('square', 'white'), (7, 1): ('square', 'white'), (7, 2): ('circle', 'black'), (7, 3): ('triangle', 'white'), (7, 4): ('triangle', 'white'), (7, 5): ('triangle', 'white'), (7, 6): ('triangle', 'black'), (7, 7): ('circle', 'white'), (7, 8): ('square', 'white'), (8, 0): ('triangle', 'white'), (8, 1): ('square', 'black'), (8, 2): ('square', 'white'), (8, 3): ('circle', 'black'), (8, 4): ('triangle', 'black'), (8, 5): ('square', 'white'), (8, 6): ('triangle', 'black'), (8, 7): ('triangle', 'white'), (8, 8): ('square', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('circle', 'white'), (0, 3): ('circle', 'white'), (0, 4): ('triangle', 'black'), (0, 5): ('circle', 'black'), (0, 6): ('triangle', 'black'), (0, 7): ('triangle', 'white'), (0, 8): ('triangle', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('square', 'black'), (1, 2): ('circle', 'black'), (1, 3): ('circle', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('triangle', 'black'), (1, 6): ('triangle', 'white'), (1, 7): ('triangle', 'white'), (1, 8): ('triangle', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('square', 'black'), (2, 2): ('triangle', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('triangle', 'white'), (2, 5): ('square', 'white'), (2, 6): ('square', 'white'), (2, 7): ('triangle', 'white'), (2, 8): ('triangle', 'white'), (3, 0): ('circle', 'white'), (3, 1): ('triangle', 'black'), (3, 2): ('circle', 'black'), (3, 3): ('square', 'white'), (3, 4): ('circle', 'black'), (3, 5): ('square', 'black'), (3, 6): ('triangle', 'black'), (3, 7): ('square', 'white'), (3, 8): ('circle', 'black'), (4, 0): ('circle', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('triangle', 'black'), (4, 3): ('triangle', 'black'), (4, 4): ('triangle', 'white'), (4, 5): ('square', 'black'), (4, 6): ('circle', 'white'), (4, 7): ('triangle', 'black'), (4, 8): ('triangle', 'white'), (5, 0): ('square', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('triangle', 'black'), (5, 3): ('triangle', 'white'), (5, 4): ('square', 'black'), (5, 5): ('square', 'white'), (5, 6): ('circle', 'white'), (5, 7): ('triangle', 'white'), (5, 8): ('triangle', 'black'), (6, 0): ('triangle', 'white'), (6, 1): ('square', 'black'), (6, 2): ('circle', 'black'), (6, 3): ('triangle', 'white'), (6, 4): ('triangle', 'white'), (6, 5): ('square', 'white'), (6, 6): ('circle', 'black'), (6, 7): ('square', 'black'), (6, 8): ('square', 'black'), (7, 0): ('circle', 'white'), (7, 1): ('triangle', 'black'), (7, 2): ('circle', 'black'), (7, 3): ('triangle', 'white'), (7, 4): ('circle', 'black'), (7, 5): ('square', 'black'), (7, 6): ('square', 'white'), (7, 7): ('circle', 'black'), (7, 8): ('square', 'white'), (8, 0): ('circle', 'black'), (8, 1): ('triangle', 'black'), (8, 2): ('triangle', 'black'), (8, 3): ('circle', 'black'), (8, 4): ('square', 'white'), (8, 5): ('triangle', 'white'), (8, 6): ('square', 'black'), (8, 7): ('circle', 'black'), (8, 8): ('circle', 'black')}]","(9, 9, 3)"
+251.svg,"[{(0, 0): ('triangle', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('square', 'white'), (0, 3): ('circle', 'white'), (0, 4): ('circle', 'black'), (0, 5): ('circle', 'white'), (0, 6): ('triangle', 'white'), (0, 7): ('square', 'white'), (0, 8): ('circle', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('triangle', 'white'), (1, 6): ('square', 'white'), (1, 7): ('square', 'white'), (1, 8): ('square', 'white'), (2, 0): ('square', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('triangle', 'white'), (2, 3): ('square', 'white'), (2, 4): ('square', 'black'), (2, 5): ('circle', 'white'), (2, 6): ('triangle', 'black'), (2, 7): ('circle', 'black'), (2, 8): ('triangle', 'white'), (3, 0): ('triangle', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('circle', 'white'), (3, 3): ('square', 'white'), (3, 4): ('square', 'black'), (3, 5): ('triangle', 'black'), (3, 6): ('circle', 'white'), (3, 7): ('triangle', 'black'), (3, 8): ('circle', 'white'), (4, 0): ('square', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('circle', 'black'), (4, 3): ('circle', 'black'), (4, 4): ('square', 'white'), (4, 5): ('square', 'white'), (4, 6): ('triangle', 'white'), (4, 7): ('square', 'white'), (4, 8): ('square', 'white'), (5, 0): ('square', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('triangle', 'white'), (5, 3): ('square', 'white'), (5, 4): ('square', 'black'), (5, 5): ('square', 'white'), (5, 6): ('square', 'black'), (5, 7): ('circle', 'white'), (5, 8): ('circle', 'black'), (6, 0): ('triangle', 'black'), (6, 1): ('triangle', 'white'), (6, 2): ('circle', 'white'), (6, 3): ('circle', 'black'), (6, 4): ('square', 'white'), (6, 5): ('square', 'black'), (6, 6): ('circle', 'white'), (6, 7): ('triangle', 'white'), (6, 8): ('triangle', 'black'), (7, 0): ('triangle', 'black'), (7, 1): ('square', 'black'), (7, 2): ('circle', 'black'), (7, 3): ('triangle', 'black'), (7, 4): ('circle', 'white'), (7, 5): ('triangle', 'black'), (7, 6): ('circle', 'white'), (7, 7): ('triangle', 'black'), (7, 8): ('square', 'white'), (8, 0): ('circle', 'white'), (8, 1): ('circle', 'white'), (8, 2): ('triangle', 'black'), (8, 3): ('square', 'white'), (8, 4): ('triangle', 'white'), (8, 5): ('square', 'white'), (8, 6): ('square', 'white'), (8, 7): ('circle', 'black'), (8, 8): ('triangle', 'black')}, {(0, 0): ('triangle', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('triangle', 'white'), (0, 6): ('triangle', 'black'), (0, 7): ('square', 'black'), (0, 8): ('circle', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('circle', 'black'), (1, 3): ('square', 'black'), (1, 4): ('square', 'white'), (1, 5): ('triangle', 'black'), (1, 6): ('circle', 'black'), (1, 7): ('triangle', 'white'), (1, 8): ('square', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('circle', 'white'), (2, 3): ('triangle', 'white'), (2, 4): ('circle', 'black'), (2, 5): ('triangle', 'white'), (2, 6): ('circle', 'black'), (2, 7): ('square', 'white'), (2, 8): ('square', 'black'), (3, 0): ('square', 'black'), (3, 1): ('square', 'white'), (3, 2): ('square', 'black'), (3, 3): ('triangle', 'white'), (3, 4): ('triangle', 'black'), (3, 5): ('square', 'white'), (3, 6): ('square', 'white'), (3, 7): ('circle', 'black'), (3, 8): ('square', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('square', 'black'), (4, 2): ('triangle', 'white'), (4, 3): ('triangle', 'black'), (4, 4): ('square', 'black'), (4, 5): ('circle', 'black'), (4, 6): ('triangle', 'white'), (4, 7): ('triangle', 'black'), (4, 8): ('triangle', 'white'), (5, 0): ('triangle', 'white'), (5, 1): ('triangle', 'white'), (5, 2): ('circle', 'white'), (5, 3): ('square', 'white'), (5, 4): ('triangle', 'white'), (5, 5): ('square', 'black'), (5, 6): ('triangle', 'white'), (5, 7): ('triangle', 'black'), (5, 8): ('triangle', 'white'), (6, 0): ('square', 'black'), (6, 1): ('circle', 'white'), (6, 2): ('circle', 'white'), (6, 3): ('triangle', 'black'), (6, 4): ('circle', 'white'), (6, 5): ('square', 'white'), (6, 6): ('square', 'black'), (6, 7): ('triangle', 'white'), (6, 8): ('square', 'white'), (7, 0): ('triangle', 'white'), (7, 1): ('circle', 'white'), (7, 2): ('square', 'white'), (7, 3): ('square', 'white'), (7, 4): ('circle', 'white'), (7, 5): ('square', 'black'), (7, 6): ('square', 'black'), (7, 7): ('circle', 'white'), (7, 8): ('circle', 'white'), (8, 0): ('square', 'black'), (8, 1): ('triangle', 'black'), (8, 2): ('triangle', 'black'), (8, 3): ('square', 'white'), (8, 4): ('triangle', 'white'), (8, 5): ('circle', 'black'), (8, 6): ('triangle', 'black'), (8, 7): ('circle', 'white'), (8, 8): ('triangle', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('square', 'white'), (0, 3): ('square', 'white'), (0, 4): ('triangle', 'white'), (0, 5): ('triangle', 'white'), (0, 6): ('square', 'white'), (0, 7): ('square', 'white'), (0, 8): ('circle', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('square', 'white'), (1, 5): ('square', 'black'), (1, 6): ('circle', 'black'), (1, 7): ('triangle', 'white'), (1, 8): ('triangle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'black'), (2, 2): ('square', 'black'), (2, 3): ('square', 'black'), (2, 4): ('circle', 'white'), (2, 5): ('circle', 'black'), (2, 6): ('circle', 'white'), (2, 7): ('circle', 'black'), (2, 8): ('square', 'black'), (3, 0): ('triangle', 'white'), (3, 1): ('circle', 'black'), (3, 2): ('circle', 'black'), (3, 3): ('triangle', 'black'), (3, 4): ('triangle', 'white'), (3, 5): ('square', 'black'), (3, 6): ('square', 'white'), (3, 7): ('square', 'white'), (3, 8): ('triangle', 'black'), (4, 0): ('square', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('square', 'white'), (4, 3): ('circle', 'black'), (4, 4): ('triangle', 'black'), (4, 5): ('circle', 'white'), (4, 6): ('triangle', 'white'), (4, 7): ('square', 'white'), (4, 8): ('square', 'white'), (5, 0): ('square', 'white'), (5, 1): ('square', 'black'), (5, 2): ('triangle', 'white'), (5, 3): ('triangle', 'white'), (5, 4): ('triangle', 'black'), (5, 5): ('triangle', 'black'), (5, 6): ('triangle', 'black'), (5, 7): ('square', 'white'), (5, 8): ('square', 'black'), (6, 0): ('circle', 'black'), (6, 1): ('circle', 'black'), (6, 2): ('triangle', 'white'), (6, 3): ('square', 'white'), (6, 4): ('circle', 'white'), (6, 5): ('circle', 'black'), (6, 6): ('triangle', 'white'), (6, 7): ('triangle', 'black'), (6, 8): ('square', 'white'), (7, 0): ('square', 'white'), (7, 1): ('square', 'black'), (7, 2): ('circle', 'black'), (7, 3): ('square', 'black'), (7, 4): ('circle', 'white'), (7, 5): ('circle', 'white'), (7, 6): ('square', 'black'), (7, 7): ('circle', 'black'), (7, 8): ('triangle', 'black'), (8, 0): ('square', 'white'), (8, 1): ('circle', 'white'), (8, 2): ('square', 'white'), (8, 3): ('circle', 'white'), (8, 4): ('circle', 'white'), (8, 5): ('square', 'white'), (8, 6): ('circle', 'black'), (8, 7): ('triangle', 'black'), (8, 8): ('circle', 'white')}]","(9, 9, 3)"
+252.svg,"[{(0, 0): ('triangle', 'white'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('triangle', 'white'), (0, 4): ('triangle', 'black'), (0, 5): ('circle', 'white'), (0, 6): ('triangle', 'black'), (0, 7): ('circle', 'black'), (0, 8): ('square', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('triangle', 'black'), (1, 3): ('circle', 'white'), (1, 4): ('triangle', 'black'), (1, 5): ('circle', 'white'), (1, 6): ('square', 'black'), (1, 7): ('circle', 'white'), (1, 8): ('circle', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('circle', 'black'), (2, 4): ('triangle', 'white'), (2, 5): ('circle', 'white'), (2, 6): ('triangle', 'white'), (2, 7): ('square', 'white'), (2, 8): ('circle', 'black'), (3, 0): ('triangle', 'white'), (3, 1): ('circle', 'white'), (3, 2): ('square', 'black'), (3, 3): ('circle', 'white'), (3, 4): ('triangle', 'white'), (3, 5): ('square', 'black'), (3, 6): ('square', 'white'), (3, 7): ('triangle', 'white'), (3, 8): ('triangle', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('triangle', 'black'), (4, 3): ('triangle', 'black'), (4, 4): ('triangle', 'black'), (4, 5): ('circle', 'black'), (4, 6): ('triangle', 'white'), (4, 7): ('square', 'black'), (4, 8): ('circle', 'black'), (5, 0): ('circle', 'black'), (5, 1): ('square', 'white'), (5, 2): ('triangle', 'black'), (5, 3): ('circle', 'black'), (5, 4): ('circle', 'black'), (5, 5): ('triangle', 'black'), (5, 6): ('triangle', 'white'), (5, 7): ('circle', 'black'), (5, 8): ('circle', 'white'), (6, 0): ('square', 'white'), (6, 1): ('square', 'black'), (6, 2): ('circle', 'white'), (6, 3): ('circle', 'black'), (6, 4): ('triangle', 'white'), (6, 5): ('circle', 'white'), (6, 6): ('circle', 'black'), (6, 7): ('square', 'white'), (6, 8): ('square', 'white'), (7, 0): ('circle', 'black'), (7, 1): ('square', 'black'), (7, 2): ('square', 'white'), (7, 3): ('square', 'black'), (7, 4): ('triangle', 'black'), (7, 5): ('triangle', 'white'), (7, 6): ('triangle', 'white'), (7, 7): ('triangle', 'white'), (7, 8): ('square', 'black'), (8, 0): ('triangle', 'black'), (8, 1): ('triangle', 'white'), (8, 2): ('circle', 'white'), (8, 3): ('square', 'white'), (8, 4): ('square', 'black'), (8, 5): ('triangle', 'black'), (8, 6): ('triangle', 'black'), (8, 7): ('triangle', 'white'), (8, 8): ('triangle', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('square', 'white'), (0, 2): ('triangle', 'black'), (0, 3): ('triangle', 'white'), (0, 4): ('square', 'white'), (0, 5): ('circle', 'black'), (0, 6): ('square', 'white'), (0, 7): ('circle', 'white'), (0, 8): ('triangle', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('circle', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('triangle', 'black'), (1, 5): ('triangle', 'white'), (1, 6): ('square', 'white'), (1, 7): ('triangle', 'black'), (1, 8): ('circle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('triangle', 'black'), (2, 3): ('triangle', 'white'), (2, 4): ('square', 'white'), (2, 5): ('triangle', 'white'), (2, 6): ('triangle', 'black'), (2, 7): ('circle', 'black'), (2, 8): ('square', 'black'), (3, 0): ('circle', 'black'), (3, 1): ('circle', 'white'), (3, 2): ('square', 'black'), (3, 3): ('square', 'black'), (3, 4): ('square', 'white'), (3, 5): ('square', 'black'), (3, 6): ('triangle', 'black'), (3, 7): ('circle', 'white'), (3, 8): ('square', 'white'), (4, 0): ('square', 'white'), (4, 1): ('square', 'black'), (4, 2): ('circle', 'black'), (4, 3): ('circle', 'black'), (4, 4): ('circle', 'white'), (4, 5): ('triangle', 'black'), (4, 6): ('square', 'white'), (4, 7): ('circle', 'black'), (4, 8): ('square', 'black'), (5, 0): ('circle', 'white'), (5, 1): ('triangle', 'white'), (5, 2): ('triangle', 'white'), (5, 3): ('square', 'white'), (5, 4): ('circle', 'black'), (5, 5): ('triangle', 'black'), (5, 6): ('square', 'white'), (5, 7): ('triangle', 'white'), (5, 8): ('square', 'black'), (6, 0): ('triangle', 'white'), (6, 1): ('triangle', 'black'), (6, 2): ('circle', 'white'), (6, 3): ('circle', 'black'), (6, 4): ('square', 'white'), (6, 5): ('square', 'black'), (6, 6): ('triangle', 'black'), (6, 7): ('triangle', 'white'), (6, 8): ('circle', 'white'), (7, 0): ('square', 'white'), (7, 1): ('triangle', 'white'), (7, 2): ('square', 'black'), (7, 3): ('square', 'black'), (7, 4): ('circle', 'black'), (7, 5): ('circle', 'black'), (7, 6): ('square', 'black'), (7, 7): ('triangle', 'white'), (7, 8): ('triangle', 'white'), (8, 0): ('triangle', 'white'), (8, 1): ('square', 'black'), (8, 2): ('circle', 'white'), (8, 3): ('circle', 'black'), (8, 4): ('square', 'black'), (8, 5): ('circle', 'black'), (8, 6): ('triangle', 'black'), (8, 7): ('circle', 'black'), (8, 8): ('triangle', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('square', 'white'), (0, 2): ('square', 'black'), (0, 3): ('circle', 'white'), (0, 4): ('circle', 'black'), (0, 5): ('triangle', 'white'), (0, 6): ('triangle', 'white'), (0, 7): ('square', 'white'), (0, 8): ('square', 'black'), (1, 0): ('square', 'white'), (1, 1): ('square', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('square', 'white'), (1, 5): ('circle', 'black'), (1, 6): ('square', 'white'), (1, 7): ('square', 'white'), (1, 8): ('circle', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('triangle', 'white'), (2, 4): ('circle', 'black'), (2, 5): ('triangle', 'black'), (2, 6): ('triangle', 'black'), (2, 7): ('square', 'black'), (2, 8): ('circle', 'white'), (3, 0): ('square', 'white'), (3, 1): ('circle', 'white'), (3, 2): ('triangle', 'black'), (3, 3): ('square', 'black'), (3, 4): ('square', 'white'), (3, 5): ('square', 'white'), (3, 6): ('triangle', 'black'), (3, 7): ('circle', 'white'), (3, 8): ('triangle', 'black'), (4, 0): ('square', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('square', 'black'), (4, 3): ('square', 'black'), (4, 4): ('circle', 'white'), (4, 5): ('triangle', 'black'), (4, 6): ('square', 'black'), (4, 7): ('triangle', 'black'), (4, 8): ('circle', 'black'), (5, 0): ('triangle', 'black'), (5, 1): ('square', 'black'), (5, 2): ('square', 'black'), (5, 3): ('triangle', 'black'), (5, 4): ('square', 'black'), (5, 5): ('square', 'black'), (5, 6): ('circle', 'white'), (5, 7): ('circle', 'black'), (5, 8): ('triangle', 'black'), (6, 0): ('square', 'white'), (6, 1): ('square', 'black'), (6, 2): ('square', 'white'), (6, 3): ('square', 'white'), (6, 4): ('square', 'white'), (6, 5): ('circle', 'black'), (6, 6): ('square', 'black'), (6, 7): ('circle', 'white'), (6, 8): ('circle', 'black'), (7, 0): ('square', 'white'), (7, 1): ('circle', 'black'), (7, 2): ('circle', 'white'), (7, 3): ('circle', 'black'), (7, 4): ('triangle', 'white'), (7, 5): ('square', 'black'), (7, 6): ('triangle', 'white'), (7, 7): ('circle', 'black'), (7, 8): ('square', 'black'), (8, 0): ('triangle', 'black'), (8, 1): ('square', 'white'), (8, 2): ('square', 'black'), (8, 3): ('square', 'black'), (8, 4): ('circle', 'white'), (8, 5): ('square', 'black'), (8, 6): ('circle', 'white'), (8, 7): ('circle', 'white'), (8, 8): ('triangle', 'black')}]","(9, 9, 3)"
+253.svg,"[{(0, 0): ('circle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('triangle', 'black'), (0, 3): ('square', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('square', 'white'), (0, 6): ('triangle', 'black'), (0, 7): ('square', 'white'), (0, 8): ('triangle', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'black'), (1, 3): ('triangle', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('triangle', 'black'), (1, 6): ('square', 'black'), (1, 7): ('square', 'white'), (1, 8): ('square', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('circle', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('square', 'white'), (2, 5): ('circle', 'black'), (2, 6): ('square', 'white'), (2, 7): ('triangle', 'black'), (2, 8): ('triangle', 'black'), (3, 0): ('square', 'white'), (3, 1): ('triangle', 'black'), (3, 2): ('triangle', 'white'), (3, 3): ('triangle', 'black'), (3, 4): ('triangle', 'white'), (3, 5): ('square', 'white'), (3, 6): ('triangle', 'black'), (3, 7): ('circle', 'white'), (3, 8): ('square', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('triangle', 'white'), (4, 2): ('square', 'black'), (4, 3): ('triangle', 'white'), (4, 4): ('circle', 'white'), (4, 5): ('square', 'white'), (4, 6): ('square', 'white'), (4, 7): ('square', 'white'), (4, 8): ('triangle', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('triangle', 'black'), (5, 2): ('circle', 'white'), (5, 3): ('triangle', 'white'), (5, 4): ('triangle', 'white'), (5, 5): ('triangle', 'white'), (5, 6): ('circle', 'black'), (5, 7): ('circle', 'white'), (5, 8): ('circle', 'black'), (6, 0): ('triangle', 'white'), (6, 1): ('circle', 'black'), (6, 2): ('square', 'white'), (6, 3): ('circle', 'black'), (6, 4): ('triangle', 'white'), (6, 5): ('square', 'black'), (6, 6): ('triangle', 'black'), (6, 7): ('square', 'white'), (6, 8): ('square', 'black'), (7, 0): ('circle', 'white'), (7, 1): ('square', 'black'), (7, 2): ('square', 'white'), (7, 3): ('circle', 'black'), (7, 4): ('circle', 'black'), (7, 5): ('triangle', 'white'), (7, 6): ('square', 'white'), (7, 7): ('circle', 'white'), (7, 8): ('square', 'black'), (8, 0): ('triangle', 'white'), (8, 1): ('circle', 'black'), (8, 2): ('triangle', 'white'), (8, 3): ('triangle', 'black'), (8, 4): ('square', 'white'), (8, 5): ('triangle', 'white'), (8, 6): ('circle', 'white'), (8, 7): ('circle', 'black'), (8, 8): ('circle', 'black')}, {(0, 0): ('square', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('square', 'black'), (0, 3): ('square', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('circle', 'black'), (0, 6): ('circle', 'black'), (0, 7): ('square', 'white'), (0, 8): ('triangle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('square', 'white'), (1, 2): ('square', 'black'), (1, 3): ('square', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('circle', 'white'), (1, 6): ('square', 'black'), (1, 7): ('triangle', 'black'), (1, 8): ('circle', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('square', 'white'), (2, 3): ('circle', 'white'), (2, 4): ('triangle', 'white'), (2, 5): ('circle', 'white'), (2, 6): ('circle', 'black'), (2, 7): ('triangle', 'black'), (2, 8): ('square', 'white'), (3, 0): ('square', 'white'), (3, 1): ('triangle', 'white'), (3, 2): ('square', 'black'), (3, 3): ('square', 'white'), (3, 4): ('square', 'black'), (3, 5): ('square', 'black'), (3, 6): ('square', 'white'), (3, 7): ('circle', 'white'), (3, 8): ('square', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('triangle', 'black'), (4, 2): ('square', 'white'), (4, 3): ('circle', 'white'), (4, 4): ('square', 'black'), (4, 5): ('square', 'white'), (4, 6): ('circle', 'white'), (4, 7): ('square', 'white'), (4, 8): ('triangle', 'white'), (5, 0): ('square', 'black'), (5, 1): ('triangle', 'white'), (5, 2): ('triangle', 'white'), (5, 3): ('triangle', 'white'), (5, 4): ('circle', 'black'), (5, 5): ('square', 'white'), (5, 6): ('circle', 'white'), (5, 7): ('square', 'black'), (5, 8): ('circle', 'white'), (6, 0): ('triangle', 'white'), (6, 1): ('triangle', 'black'), (6, 2): ('triangle', 'black'), (6, 3): ('triangle', 'black'), (6, 4): ('square', 'white'), (6, 5): ('square', 'black'), (6, 6): ('circle', 'black'), (6, 7): ('square', 'black'), (6, 8): ('triangle', 'black'), (7, 0): ('triangle', 'white'), (7, 1): ('square', 'white'), (7, 2): ('triangle', 'black'), (7, 3): ('triangle', 'black'), (7, 4): ('circle', 'white'), (7, 5): ('triangle', 'white'), (7, 6): ('circle', 'black'), (7, 7): ('circle', 'white'), (7, 8): ('circle', 'white'), (8, 0): ('circle', 'black'), (8, 1): ('triangle', 'black'), (8, 2): ('circle', 'black'), (8, 3): ('triangle', 'white'), (8, 4): ('square', 'black'), (8, 5): ('triangle', 'black'), (8, 6): ('triangle', 'white'), (8, 7): ('square', 'black'), (8, 8): ('circle', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('triangle', 'white'), (0, 4): ('triangle', 'black'), (0, 5): ('circle', 'white'), (0, 6): ('circle', 'white'), (0, 7): ('square', 'white'), (0, 8): ('square', 'black'), (1, 0): ('square', 'black'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'black'), (1, 3): ('square', 'black'), (1, 4): ('triangle', 'black'), (1, 5): ('circle', 'black'), (1, 6): ('circle', 'white'), (1, 7): ('triangle', 'black'), (1, 8): ('triangle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('square', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('circle', 'black'), (2, 6): ('square', 'black'), (2, 7): ('triangle', 'white'), (2, 8): ('triangle', 'white'), (3, 0): ('triangle', 'white'), (3, 1): ('triangle', 'black'), (3, 2): ('triangle', 'white'), (3, 3): ('circle', 'black'), (3, 4): ('square', 'black'), (3, 5): ('square', 'black'), (3, 6): ('square', 'black'), (3, 7): ('triangle', 'black'), (3, 8): ('square', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('square', 'black'), (4, 2): ('square', 'white'), (4, 3): ('square', 'white'), (4, 4): ('triangle', 'white'), (4, 5): ('circle', 'white'), (4, 6): ('square', 'white'), (4, 7): ('circle', 'white'), (4, 8): ('circle', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('triangle', 'white'), (5, 3): ('triangle', 'white'), (5, 4): ('circle', 'white'), (5, 5): ('circle', 'white'), (5, 6): ('circle', 'white'), (5, 7): ('circle', 'white'), (5, 8): ('circle', 'black'), (6, 0): ('square', 'white'), (6, 1): ('square', 'white'), (6, 2): ('square', 'white'), (6, 3): ('triangle', 'black'), (6, 4): ('triangle', 'black'), (6, 5): ('square', 'black'), (6, 6): ('triangle', 'white'), (6, 7): ('triangle', 'black'), (6, 8): ('triangle', 'black'), (7, 0): ('triangle', 'black'), (7, 1): ('triangle', 'black'), (7, 2): ('square', 'white'), (7, 3): ('triangle', 'white'), (7, 4): ('triangle', 'black'), (7, 5): ('circle', 'black'), (7, 6): ('square', 'black'), (7, 7): ('triangle', 'black'), (7, 8): ('square', 'white'), (8, 0): ('circle', 'white'), (8, 1): ('square', 'black'), (8, 2): ('square', 'white'), (8, 3): ('triangle', 'black'), (8, 4): ('triangle', 'black'), (8, 5): ('square', 'white'), (8, 6): ('triangle', 'white'), (8, 7): ('circle', 'white'), (8, 8): ('square', 'white')}]","(9, 9, 3)"
+254.svg,"[{(0, 0): ('triangle', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('square', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('circle', 'white'), (0, 6): ('circle', 'black'), (0, 7): ('triangle', 'black'), (0, 8): ('triangle', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'black'), (1, 3): ('square', 'white'), (1, 4): ('square', 'white'), (1, 5): ('circle', 'white'), (1, 6): ('triangle', 'black'), (1, 7): ('circle', 'black'), (1, 8): ('triangle', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('triangle', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('circle', 'white'), (2, 6): ('square', 'white'), (2, 7): ('triangle', 'black'), (2, 8): ('circle', 'white'), (3, 0): ('circle', 'white'), (3, 1): ('triangle', 'black'), (3, 2): ('square', 'white'), (3, 3): ('triangle', 'black'), (3, 4): ('square', 'white'), (3, 5): ('triangle', 'white'), (3, 6): ('triangle', 'white'), (3, 7): ('square', 'black'), (3, 8): ('circle', 'black'), (4, 0): ('triangle', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('triangle', 'white'), (4, 3): ('circle', 'white'), (4, 4): ('square', 'black'), (4, 5): ('triangle', 'white'), (4, 6): ('triangle', 'white'), (4, 7): ('triangle', 'white'), (4, 8): ('circle', 'black'), (5, 0): ('triangle', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('circle', 'black'), (5, 3): ('circle', 'black'), (5, 4): ('triangle', 'black'), (5, 5): ('circle', 'black'), (5, 6): ('circle', 'black'), (5, 7): ('square', 'black'), (5, 8): ('triangle', 'white'), (6, 0): ('circle', 'white'), (6, 1): ('triangle', 'black'), (6, 2): ('square', 'white'), (6, 3): ('circle', 'white'), (6, 4): ('circle', 'black'), (6, 5): ('circle', 'black'), (6, 6): ('triangle', 'white'), (6, 7): ('circle', 'white'), (6, 8): ('square', 'white'), (7, 0): ('square', 'white'), (7, 1): ('square', 'black'), (7, 2): ('triangle', 'white'), (7, 3): ('circle', 'black'), (7, 4): ('square', 'black'), (7, 5): ('circle', 'white'), (7, 6): ('triangle', 'white'), (7, 7): ('circle', 'white'), (7, 8): ('triangle', 'white'), (8, 0): ('triangle', 'white'), (8, 1): ('circle', 'black'), (8, 2): ('triangle', 'white'), (8, 3): ('triangle', 'black'), (8, 4): ('square', 'white'), (8, 5): ('square', 'black'), (8, 6): ('circle', 'white'), (8, 7): ('circle', 'black'), (8, 8): ('circle', 'black')}, {(0, 0): ('circle', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('triangle', 'white'), (0, 4): ('circle', 'white'), (0, 5): ('square', 'black'), (0, 6): ('square', 'black'), (0, 7): ('circle', 'white'), (0, 8): ('triangle', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('square', 'black'), (1, 3): ('triangle', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('circle', 'white'), (1, 6): ('triangle', 'black'), (1, 7): ('square', 'white'), (1, 8): ('triangle', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('circle', 'white'), (2, 5): ('square', 'black'), (2, 6): ('square', 'black'), (2, 7): ('square', 'black'), (2, 8): ('circle', 'white'), (3, 0): ('square', 'black'), (3, 1): ('square', 'black'), (3, 2): ('circle', 'white'), (3, 3): ('circle', 'white'), (3, 4): ('square', 'white'), (3, 5): ('square', 'white'), (3, 6): ('square', 'black'), (3, 7): ('triangle', 'white'), (3, 8): ('circle', 'white'), (4, 0): ('triangle', 'white'), (4, 1): ('square', 'white'), (4, 2): ('square', 'white'), (4, 3): ('circle', 'white'), (4, 4): ('triangle', 'black'), (4, 5): ('triangle', 'black'), (4, 6): ('square', 'black'), (4, 7): ('circle', 'black'), (4, 8): ('square', 'black'), (5, 0): ('triangle', 'black'), (5, 1): ('triangle', 'white'), (5, 2): ('triangle', 'black'), (5, 3): ('triangle', 'white'), (5, 4): ('triangle', 'black'), (5, 5): ('square', 'white'), (5, 6): ('triangle', 'black'), (5, 7): ('circle', 'black'), (5, 8): ('square', 'black'), (6, 0): ('triangle', 'white'), (6, 1): ('circle', 'black'), (6, 2): ('square', 'black'), (6, 3): ('square', 'white'), (6, 4): ('square', 'white'), (6, 5): ('circle', 'white'), (6, 6): ('triangle', 'black'), (6, 7): ('circle', 'black'), (6, 8): ('circle', 'black'), (7, 0): ('circle', 'black'), (7, 1): ('circle', 'white'), (7, 2): ('circle', 'white'), (7, 3): ('circle', 'black'), (7, 4): ('triangle', 'white'), (7, 5): ('circle', 'white'), (7, 6): ('circle', 'black'), (7, 7): ('square', 'white'), (7, 8): ('square', 'white'), (8, 0): ('triangle', 'black'), (8, 1): ('square', 'black'), (8, 2): ('circle', 'black'), (8, 3): ('square', 'black'), (8, 4): ('triangle', 'black'), (8, 5): ('circle', 'black'), (8, 6): ('square', 'white'), (8, 7): ('square', 'black'), (8, 8): ('circle', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('triangle', 'black'), (0, 4): ('square', 'white'), (0, 5): ('square', 'black'), (0, 6): ('triangle', 'black'), (0, 7): ('square', 'white'), (0, 8): ('triangle', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('triangle', 'black'), (1, 3): ('square', 'white'), (1, 4): ('square', 'black'), (1, 5): ('circle', 'black'), (1, 6): ('square', 'white'), (1, 7): ('circle', 'black'), (1, 8): ('triangle', 'black'), (2, 0): ('square', 'black'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('circle', 'black'), (2, 5): ('circle', 'white'), (2, 6): ('square', 'black'), (2, 7): ('square', 'black'), (2, 8): ('triangle', 'white'), (3, 0): ('circle', 'white'), (3, 1): ('circle', 'white'), (3, 2): ('triangle', 'black'), (3, 3): ('square', 'white'), (3, 4): ('square', 'white'), (3, 5): ('triangle', 'white'), (3, 6): ('triangle', 'black'), (3, 7): ('triangle', 'black'), (3, 8): ('triangle', 'white'), (4, 0): ('circle', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('triangle', 'white'), (4, 3): ('square', 'white'), (4, 4): ('circle', 'black'), (4, 5): ('triangle', 'white'), (4, 6): ('square', 'black'), (4, 7): ('circle', 'black'), (4, 8): ('triangle', 'white'), (5, 0): ('square', 'white'), (5, 1): ('square', 'black'), (5, 2): ('triangle', 'black'), (5, 3): ('circle', 'black'), (5, 4): ('circle', 'black'), (5, 5): ('triangle', 'black'), (5, 6): ('square', 'black'), (5, 7): ('circle', 'white'), (5, 8): ('triangle', 'white'), (6, 0): ('circle', 'black'), (6, 1): ('circle', 'white'), (6, 2): ('circle', 'white'), (6, 3): ('square', 'white'), (6, 4): ('circle', 'white'), (6, 5): ('square', 'white'), (6, 6): ('square', 'white'), (6, 7): ('square', 'black'), (6, 8): ('triangle', 'white'), (7, 0): ('square', 'white'), (7, 1): ('circle', 'white'), (7, 2): ('circle', 'white'), (7, 3): ('circle', 'white'), (7, 4): ('square', 'black'), (7, 5): ('triangle', 'white'), (7, 6): ('triangle', 'white'), (7, 7): ('circle', 'white'), (7, 8): ('circle', 'white'), (8, 0): ('circle', 'black'), (8, 1): ('circle', 'white'), (8, 2): ('circle', 'black'), (8, 3): ('circle', 'white'), (8, 4): ('circle', 'black'), (8, 5): ('circle', 'white'), (8, 6): ('circle', 'white'), (8, 7): ('triangle', 'white'), (8, 8): ('triangle', 'white')}]","(9, 9, 3)"
+255.svg,"[{(0, 0): ('triangle', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('square', 'white'), (0, 3): ('triangle', 'black'), (0, 4): ('circle', 'black'), (0, 5): ('circle', 'black'), (0, 6): ('square', 'black'), (0, 7): ('circle', 'black'), (0, 8): ('circle', 'white'), (1, 0): ('triangle', 'white'), (1, 1): ('square', 'black'), (1, 2): ('square', 'black'), (1, 3): ('square', 'white'), (1, 4): ('square', 'black'), (1, 5): ('square', 'black'), (1, 6): ('square', 'black'), (1, 7): ('triangle', 'black'), (1, 8): ('circle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('square', 'black'), (2, 2): ('triangle', 'black'), (2, 3): ('triangle', 'white'), (2, 4): ('triangle', 'white'), (2, 5): ('circle', 'white'), (2, 6): ('circle', 'white'), (2, 7): ('circle', 'black'), (2, 8): ('triangle', 'white'), (3, 0): ('square', 'white'), (3, 1): ('square', 'black'), (3, 2): ('triangle', 'white'), (3, 3): ('triangle', 'white'), (3, 4): ('square', 'white'), (3, 5): ('circle', 'white'), (3, 6): ('triangle', 'black'), (3, 7): ('triangle', 'black'), (3, 8): ('square', 'white'), (4, 0): ('circle', 'white'), (4, 1): ('square', 'white'), (4, 2): ('triangle', 'white'), (4, 3): ('circle', 'white'), (4, 4): ('square', 'white'), (4, 5): ('circle', 'black'), (4, 6): ('square', 'black'), (4, 7): ('triangle', 'black'), (4, 8): ('triangle', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('square', 'black'), (5, 2): ('triangle', 'black'), (5, 3): ('square', 'black'), (5, 4): ('triangle', 'black'), (5, 5): ('circle', 'white'), (5, 6): ('triangle', 'black'), (5, 7): ('triangle', 'black'), (5, 8): ('triangle', 'white'), (6, 0): ('square', 'black'), (6, 1): ('circle', 'white'), (6, 2): ('circle', 'black'), (6, 3): ('circle', 'black'), (6, 4): ('triangle', 'white'), (6, 5): ('triangle', 'white'), (6, 6): ('triangle', 'black'), (6, 7): ('circle', 'white'), (6, 8): ('triangle', 'black'), (7, 0): ('triangle', 'white'), (7, 1): ('triangle', 'black'), (7, 2): ('square', 'white'), (7, 3): ('square', 'black'), (7, 4): ('triangle', 'white'), (7, 5): ('triangle', 'white'), (7, 6): ('circle', 'white'), (7, 7): ('square', 'white'), (7, 8): ('triangle', 'white'), (8, 0): ('circle', 'white'), (8, 1): ('triangle', 'black'), (8, 2): ('triangle', 'white'), (8, 3): ('square', 'white'), (8, 4): ('triangle', 'black'), (8, 5): ('square', 'white'), (8, 6): ('triangle', 'black'), (8, 7): ('triangle', 'black'), (8, 8): ('circle', 'white')}, {(0, 0): ('square', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('square', 'white'), (0, 4): ('square', 'black'), (0, 5): ('square', 'white'), (0, 6): ('square', 'white'), (0, 7): ('square', 'white'), (0, 8): ('circle', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'black'), (1, 3): ('square', 'white'), (1, 4): ('triangle', 'white'), (1, 5): ('triangle', 'white'), (1, 6): ('circle', 'black'), (1, 7): ('triangle', 'black'), (1, 8): ('triangle', 'white'), (2, 0): ('square', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('circle', 'black'), (2, 3): ('square', 'white'), (2, 4): ('square', 'white'), (2, 5): ('square', 'white'), (2, 6): ('square', 'black'), (2, 7): ('triangle', 'black'), (2, 8): ('square', 'black'), (3, 0): ('circle', 'black'), (3, 1): ('triangle', 'black'), (3, 2): ('triangle', 'black'), (3, 3): ('square', 'white'), (3, 4): ('square', 'white'), (3, 5): ('triangle', 'black'), (3, 6): ('circle', 'white'), (3, 7): ('triangle', 'black'), (3, 8): ('circle', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('square', 'white'), (4, 2): ('square', 'white'), (4, 3): ('circle', 'black'), (4, 4): ('circle', 'white'), (4, 5): ('triangle', 'white'), (4, 6): ('circle', 'black'), (4, 7): ('square', 'white'), (4, 8): ('circle', 'black'), (5, 0): ('square', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('square', 'black'), (5, 3): ('triangle', 'black'), (5, 4): ('triangle', 'white'), (5, 5): ('square', 'black'), (5, 6): ('triangle', 'black'), (5, 7): ('circle', 'black'), (5, 8): ('circle', 'white'), (6, 0): ('triangle', 'black'), (6, 1): ('square', 'white'), (6, 2): ('circle', 'white'), (6, 3): ('circle', 'white'), (6, 4): ('circle', 'white'), (6, 5): ('triangle', 'white'), (6, 6): ('square', 'white'), (6, 7): ('triangle', 'black'), (6, 8): ('triangle', 'white'), (7, 0): ('circle', 'white'), (7, 1): ('square', 'black'), (7, 2): ('triangle', 'white'), (7, 3): ('square', 'white'), (7, 4): ('square', 'black'), (7, 5): ('circle', 'black'), (7, 6): ('triangle', 'white'), (7, 7): ('square', 'black'), (7, 8): ('circle', 'black'), (8, 0): ('triangle', 'black'), (8, 1): ('circle', 'white'), (8, 2): ('circle', 'black'), (8, 3): ('square', 'white'), (8, 4): ('square', 'black'), (8, 5): ('circle', 'black'), (8, 6): ('circle', 'black'), (8, 7): ('triangle', 'white'), (8, 8): ('circle', 'black')}, {(0, 0): ('triangle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('triangle', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('square', 'white'), (0, 6): ('circle', 'white'), (0, 7): ('square', 'black'), (0, 8): ('triangle', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('circle', 'black'), (1, 5): ('circle', 'black'), (1, 6): ('square', 'white'), (1, 7): ('circle', 'black'), (1, 8): ('square', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('triangle', 'white'), (2, 4): ('square', 'black'), (2, 5): ('triangle', 'black'), (2, 6): ('circle', 'black'), (2, 7): ('square', 'black'), (2, 8): ('triangle', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('square', 'white'), (3, 2): ('square', 'white'), (3, 3): ('triangle', 'black'), (3, 4): ('triangle', 'black'), (3, 5): ('square', 'black'), (3, 6): ('triangle', 'black'), (3, 7): ('square', 'black'), (3, 8): ('square', 'black'), (4, 0): ('square', 'black'), (4, 1): ('triangle', 'white'), (4, 2): ('circle', 'white'), (4, 3): ('triangle', 'black'), (4, 4): ('square', 'black'), (4, 5): ('square', 'white'), (4, 6): ('triangle', 'white'), (4, 7): ('square', 'black'), (4, 8): ('square', 'black'), (5, 0): ('square', 'white'), (5, 1): ('triangle', 'white'), (5, 2): ('square', 'white'), (5, 3): ('triangle', 'white'), (5, 4): ('circle', 'white'), (5, 5): ('triangle', 'white'), (5, 6): ('circle', 'white'), (5, 7): ('circle', 'black'), (5, 8): ('circle', 'black'), (6, 0): ('circle', 'white'), (6, 1): ('square', 'black'), (6, 2): ('square', 'black'), (6, 3): ('circle', 'black'), (6, 4): ('circle', 'black'), (6, 5): ('square', 'white'), (6, 6): ('square', 'white'), (6, 7): ('triangle', 'black'), (6, 8): ('triangle', 'black'), (7, 0): ('triangle', 'black'), (7, 1): ('circle', 'black'), (7, 2): ('square', 'white'), (7, 3): ('square', 'white'), (7, 4): ('triangle', 'black'), (7, 5): ('triangle', 'white'), (7, 6): ('circle', 'black'), (7, 7): ('triangle', 'black'), (7, 8): ('square', 'white'), (8, 0): ('circle', 'white'), (8, 1): ('triangle', 'black'), (8, 2): ('triangle', 'black'), (8, 3): ('triangle', 'white'), (8, 4): ('circle', 'white'), (8, 5): ('square', 'white'), (8, 6): ('square', 'white'), (8, 7): ('triangle', 'white'), (8, 8): ('square', 'white')}]","(9, 9, 3)"
+256.svg,"[{(0, 0): ('circle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('triangle', 'black'), (0, 4): ('square', 'black'), (0, 5): ('square', 'white'), (0, 6): ('square', 'white'), (0, 7): ('triangle', 'white'), (0, 8): ('circle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('square', 'black'), (1, 3): ('square', 'white'), (1, 4): ('triangle', 'black'), (1, 5): ('triangle', 'black'), (1, 6): ('triangle', 'white'), (1, 7): ('triangle', 'black'), (1, 8): ('triangle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('square', 'white'), (2, 4): ('triangle', 'white'), (2, 5): ('triangle', 'white'), (2, 6): ('square', 'white'), (2, 7): ('square', 'white'), (2, 8): ('circle', 'black'), (3, 0): ('square', 'black'), (3, 1): ('circle', 'white'), (3, 2): ('circle', 'black'), (3, 3): ('square', 'white'), (3, 4): ('square', 'white'), (3, 5): ('circle', 'black'), (3, 6): ('triangle', 'white'), (3, 7): ('circle', 'black'), (3, 8): ('circle', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('circle', 'white'), (4, 2): ('circle', 'white'), (4, 3): ('square', 'white'), (4, 4): ('circle', 'white'), (4, 5): ('triangle', 'white'), (4, 6): ('circle', 'black'), (4, 7): ('square', 'white'), (4, 8): ('circle', 'white'), (5, 0): ('triangle', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('triangle', 'black'), (5, 3): ('circle', 'black'), (5, 4): ('triangle', 'black'), (5, 5): ('square', 'white'), (5, 6): ('square', 'white'), (5, 7): ('square', 'white'), (5, 8): ('circle', 'white'), (6, 0): ('triangle', 'white'), (6, 1): ('triangle', 'black'), (6, 2): ('circle', 'black'), (6, 3): ('circle', 'white'), (6, 4): ('triangle', 'black'), (6, 5): ('triangle', 'black'), (6, 6): ('square', 'black'), (6, 7): ('triangle', 'black'), (6, 8): ('circle', 'white'), (7, 0): ('circle', 'black'), (7, 1): ('circle', 'white'), (7, 2): ('circle', 'black'), (7, 3): ('square', 'white'), (7, 4): ('square', 'black'), (7, 5): ('triangle', 'white'), (7, 6): ('circle', 'white'), (7, 7): ('square', 'black'), (7, 8): ('square', 'white'), (8, 0): ('square', 'black'), (8, 1): ('square', 'black'), (8, 2): ('circle', 'black'), (8, 3): ('square', 'black'), (8, 4): ('triangle', 'white'), (8, 5): ('circle', 'white'), (8, 6): ('triangle', 'black'), (8, 7): ('circle', 'black'), (8, 8): ('circle', 'black')}, {(0, 0): ('square', 'white'), (0, 1): ('square', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('circle', 'white'), (0, 4): ('square', 'white'), (0, 5): ('triangle', 'white'), (0, 6): ('triangle', 'black'), (0, 7): ('triangle', 'black'), (0, 8): ('circle', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('square', 'black'), (1, 2): ('square', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('square', 'black'), (1, 5): ('circle', 'white'), (1, 6): ('triangle', 'black'), (1, 7): ('square', 'black'), (1, 8): ('circle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('square', 'black'), (2, 3): ('triangle', 'black'), (2, 4): ('circle', 'white'), (2, 5): ('square', 'black'), (2, 6): ('square', 'black'), (2, 7): ('triangle', 'black'), (2, 8): ('triangle', 'black'), (3, 0): ('square', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('triangle', 'black'), (3, 3): ('square', 'black'), (3, 4): ('circle', 'white'), (3, 5): ('triangle', 'white'), (3, 6): ('triangle', 'black'), (3, 7): ('triangle', 'white'), (3, 8): ('triangle', 'white'), (4, 0): ('triangle', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('circle', 'black'), (4, 3): ('circle', 'white'), (4, 4): ('triangle', 'black'), (4, 5): ('square', 'white'), (4, 6): ('triangle', 'white'), (4, 7): ('circle', 'white'), (4, 8): ('circle', 'black'), (5, 0): ('square', 'black'), (5, 1): ('triangle', 'black'), (5, 2): ('triangle', 'black'), (5, 3): ('triangle', 'white'), (5, 4): ('triangle', 'black'), (5, 5): ('circle', 'black'), (5, 6): ('triangle', 'black'), (5, 7): ('square', 'white'), (5, 8): ('square', 'black'), (6, 0): ('square', 'black'), (6, 1): ('circle', 'black'), (6, 2): ('triangle', 'black'), (6, 3): ('triangle', 'black'), (6, 4): ('square', 'white'), (6, 5): ('circle', 'black'), (6, 6): ('square', 'white'), (6, 7): ('square', 'black'), (6, 8): ('triangle', 'white'), (7, 0): ('circle', 'black'), (7, 1): ('circle', 'black'), (7, 2): ('circle', 'black'), (7, 3): ('square', 'white'), (7, 4): ('square', 'black'), (7, 5): ('square', 'black'), (7, 6): ('square', 'black'), (7, 7): ('triangle', 'black'), (7, 8): ('square', 'white'), (8, 0): ('triangle', 'black'), (8, 1): ('square', 'white'), (8, 2): ('triangle', 'black'), (8, 3): ('square', 'white'), (8, 4): ('square', 'black'), (8, 5): ('triangle', 'black'), (8, 6): ('triangle', 'white'), (8, 7): ('circle', 'black'), (8, 8): ('circle', 'white')}, {(0, 0): ('triangle', 'black'), (0, 1): ('square', 'black'), (0, 2): ('square', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('circle', 'black'), (0, 5): ('triangle', 'black'), (0, 6): ('triangle', 'black'), (0, 7): ('square', 'black'), (0, 8): ('circle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('square', 'black'), (1, 2): ('square', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('triangle', 'black'), (1, 5): ('triangle', 'white'), (1, 6): ('circle', 'white'), (1, 7): ('circle', 'white'), (1, 8): ('circle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('square', 'white'), (2, 4): ('circle', 'white'), (2, 5): ('square', 'black'), (2, 6): ('circle', 'white'), (2, 7): ('triangle', 'black'), (2, 8): ('circle', 'black'), (3, 0): ('square', 'white'), (3, 1): ('square', 'black'), (3, 2): ('square', 'white'), (3, 3): ('circle', 'black'), (3, 4): ('triangle', 'black'), (3, 5): ('square', 'black'), (3, 6): ('circle', 'white'), (3, 7): ('circle', 'white'), (3, 8): ('triangle', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('circle', 'white'), (4, 2): ('square', 'black'), (4, 3): ('circle', 'black'), (4, 4): ('circle', 'black'), (4, 5): ('triangle', 'black'), (4, 6): ('square', 'white'), (4, 7): ('circle', 'black'), (4, 8): ('square', 'black'), (5, 0): ('square', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('triangle', 'black'), (5, 3): ('square', 'white'), (5, 4): ('triangle', 'black'), (5, 5): ('square', 'white'), (5, 6): ('circle', 'black'), (5, 7): ('triangle', 'white'), (5, 8): ('square', 'white'), (6, 0): ('square', 'white'), (6, 1): ('square', 'black'), (6, 2): ('triangle', 'white'), (6, 3): ('triangle', 'black'), (6, 4): ('circle', 'black'), (6, 5): ('triangle', 'black'), (6, 6): ('triangle', 'white'), (6, 7): ('circle', 'white'), (6, 8): ('square', 'black'), (7, 0): ('circle', 'black'), (7, 1): ('triangle', 'black'), (7, 2): ('square', 'white'), (7, 3): ('square', 'black'), (7, 4): ('circle', 'black'), (7, 5): ('square', 'white'), (7, 6): ('circle', 'white'), (7, 7): ('circle', 'white'), (7, 8): ('circle', 'black'), (8, 0): ('circle', 'black'), (8, 1): ('triangle', 'black'), (8, 2): ('square', 'white'), (8, 3): ('triangle', 'black'), (8, 4): ('square', 'black'), (8, 5): ('square', 'white'), (8, 6): ('triangle', 'black'), (8, 7): ('triangle', 'white'), (8, 8): ('triangle', 'white')}]","(9, 9, 3)"
+257.svg,"[{(0, 0): ('triangle', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('square', 'white'), (0, 3): ('square', 'white'), (0, 4): ('circle', 'black'), (0, 5): ('square', 'black'), (0, 6): ('square', 'white'), (0, 7): ('triangle', 'white'), (0, 8): ('circle', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('square', 'white'), (1, 4): ('square', 'white'), (1, 5): ('triangle', 'white'), (1, 6): ('circle', 'black'), (1, 7): ('square', 'white'), (1, 8): ('square', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('square', 'white'), (2, 3): ('circle', 'white'), (2, 4): ('square', 'white'), (2, 5): ('square', 'black'), (2, 6): ('circle', 'white'), (2, 7): ('circle', 'black'), (2, 8): ('circle', 'white'), (3, 0): ('triangle', 'white'), (3, 1): ('square', 'black'), (3, 2): ('circle', 'black'), (3, 3): ('circle', 'white'), (3, 4): ('circle', 'white'), (3, 5): ('circle', 'black'), (3, 6): ('triangle', 'white'), (3, 7): ('triangle', 'black'), (3, 8): ('square', 'white'), (4, 0): ('circle', 'white'), (4, 1): ('triangle', 'black'), (4, 2): ('circle', 'black'), (4, 3): ('circle', 'white'), (4, 4): ('square', 'white'), (4, 5): ('triangle', 'black'), (4, 6): ('triangle', 'black'), (4, 7): ('triangle', 'black'), (4, 8): ('triangle', 'white'), (5, 0): ('triangle', 'white'), (5, 1): ('square', 'white'), (5, 2): ('circle', 'black'), (5, 3): ('triangle', 'black'), (5, 4): ('triangle', 'white'), (5, 5): ('triangle', 'black'), (5, 6): ('square', 'white'), (5, 7): ('square', 'black'), (5, 8): ('square', 'black'), (6, 0): ('circle', 'black'), (6, 1): ('square', 'white'), (6, 2): ('triangle', 'white'), (6, 3): ('triangle', 'white'), (6, 4): ('square', 'black'), (6, 5): ('circle', 'black'), (6, 6): ('circle', 'black'), (6, 7): ('square', 'black'), (6, 8): ('circle', 'black'), (7, 0): ('circle', 'white'), (7, 1): ('triangle', 'black'), (7, 2): ('circle', 'white'), (7, 3): ('circle', 'black'), (7, 4): ('square', 'black'), (7, 5): ('triangle', 'white'), (7, 6): ('circle', 'black'), (7, 7): ('circle', 'black'), (7, 8): ('circle', 'black'), (8, 0): ('square', 'white'), (8, 1): ('square', 'white'), (8, 2): ('triangle', 'white'), (8, 3): ('triangle', 'white'), (8, 4): ('square', 'white'), (8, 5): ('triangle', 'black'), (8, 6): ('triangle', 'white'), (8, 7): ('circle', 'white'), (8, 8): ('square', 'black')}, {(0, 0): ('triangle', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('square', 'black'), (0, 6): ('square', 'white'), (0, 7): ('square', 'white'), (0, 8): ('triangle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('circle', 'black'), (1, 5): ('triangle', 'black'), (1, 6): ('triangle', 'white'), (1, 7): ('triangle', 'white'), (1, 8): ('triangle', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'black'), (2, 2): ('square', 'black'), (2, 3): ('triangle', 'black'), (2, 4): ('circle', 'black'), (2, 5): ('circle', 'black'), (2, 6): ('square', 'black'), (2, 7): ('triangle', 'black'), (2, 8): ('circle', 'white'), (3, 0): ('square', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('triangle', 'black'), (3, 3): ('circle', 'black'), (3, 4): ('triangle', 'white'), (3, 5): ('square', 'black'), (3, 6): ('circle', 'white'), (3, 7): ('square', 'white'), (3, 8): ('square', 'black'), (4, 0): ('triangle', 'white'), (4, 1): ('square', 'white'), (4, 2): ('circle', 'white'), (4, 3): ('square', 'white'), (4, 4): ('circle', 'white'), (4, 5): ('triangle', 'black'), (4, 6): ('square', 'white'), (4, 7): ('circle', 'black'), (4, 8): ('circle', 'black'), (5, 0): ('triangle', 'white'), (5, 1): ('triangle', 'white'), (5, 2): ('circle', 'white'), (5, 3): ('square', 'white'), (5, 4): ('square', 'white'), (5, 5): ('circle', 'black'), (5, 6): ('triangle', 'black'), (5, 7): ('square', 'white'), (5, 8): ('triangle', 'white'), (6, 0): ('triangle', 'white'), (6, 1): ('triangle', 'black'), (6, 2): ('triangle', 'black'), (6, 3): ('triangle', 'black'), (6, 4): ('circle', 'black'), (6, 5): ('circle', 'black'), (6, 6): ('circle', 'white'), (6, 7): ('triangle', 'white'), (6, 8): ('triangle', 'white'), (7, 0): ('circle', 'white'), (7, 1): ('triangle', 'black'), (7, 2): ('circle', 'white'), (7, 3): ('circle', 'white'), (7, 4): ('circle', 'black'), (7, 5): ('circle', 'black'), (7, 6): ('square', 'white'), (7, 7): ('triangle', 'white'), (7, 8): ('circle', 'white'), (8, 0): ('triangle', 'white'), (8, 1): ('circle', 'black'), (8, 2): ('square', 'white'), (8, 3): ('circle', 'white'), (8, 4): ('circle', 'white'), (8, 5): ('circle', 'black'), (8, 6): ('circle', 'black'), (8, 7): ('circle', 'black'), (8, 8): ('triangle', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('circle', 'black'), (0, 6): ('triangle', 'white'), (0, 7): ('triangle', 'white'), (0, 8): ('circle', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('square', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('triangle', 'white'), (1, 4): ('triangle', 'black'), (1, 5): ('square', 'black'), (1, 6): ('circle', 'black'), (1, 7): ('circle', 'white'), (1, 8): ('square', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('triangle', 'white'), (2, 4): ('square', 'white'), (2, 5): ('circle', 'white'), (2, 6): ('circle', 'black'), (2, 7): ('triangle', 'black'), (2, 8): ('circle', 'black'), (3, 0): ('circle', 'white'), (3, 1): ('square', 'black'), (3, 2): ('square', 'white'), (3, 3): ('square', 'black'), (3, 4): ('circle', 'black'), (3, 5): ('square', 'white'), (3, 6): ('circle', 'white'), (3, 7): ('triangle', 'black'), (3, 8): ('triangle', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('square', 'white'), (4, 2): ('circle', 'white'), (4, 3): ('triangle', 'white'), (4, 4): ('triangle', 'white'), (4, 5): ('triangle', 'black'), (4, 6): ('square', 'white'), (4, 7): ('triangle', 'black'), (4, 8): ('square', 'white'), (5, 0): ('square', 'black'), (5, 1): ('triangle', 'white'), (5, 2): ('circle', 'black'), (5, 3): ('triangle', 'white'), (5, 4): ('circle', 'black'), (5, 5): ('circle', 'black'), (5, 6): ('square', 'white'), (5, 7): ('square', 'black'), (5, 8): ('triangle', 'white'), (6, 0): ('square', 'white'), (6, 1): ('square', 'white'), (6, 2): ('triangle', 'black'), (6, 3): ('triangle', 'black'), (6, 4): ('circle', 'black'), (6, 5): ('triangle', 'black'), (6, 6): ('circle', 'black'), (6, 7): ('triangle', 'white'), (6, 8): ('triangle', 'black'), (7, 0): ('square', 'black'), (7, 1): ('triangle', 'white'), (7, 2): ('circle', 'black'), (7, 3): ('triangle', 'black'), (7, 4): ('triangle', 'black'), (7, 5): ('circle', 'white'), (7, 6): ('triangle', 'black'), (7, 7): ('circle', 'white'), (7, 8): ('triangle', 'white'), (8, 0): ('circle', 'white'), (8, 1): ('square', 'white'), (8, 2): ('square', 'black'), (8, 3): ('triangle', 'black'), (8, 4): ('square', 'white'), (8, 5): ('square', 'white'), (8, 6): ('circle', 'black'), (8, 7): ('square', 'white'), (8, 8): ('square', 'black')}]","(9, 9, 3)"
+258.svg,"[{(0, 0): ('triangle', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'white'), (0, 3): ('triangle', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('circle', 'black'), (0, 6): ('triangle', 'black'), (0, 7): ('circle', 'black'), (0, 8): ('triangle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'white'), (1, 3): ('square', 'white'), (1, 4): ('square', 'black'), (1, 5): ('square', 'white'), (1, 6): ('triangle', 'white'), (1, 7): ('square', 'black'), (1, 8): ('circle', 'white'), (2, 0): ('square', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('square', 'black'), (2, 3): ('circle', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('square', 'white'), (2, 6): ('triangle', 'white'), (2, 7): ('square', 'black'), (2, 8): ('circle', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('circle', 'black'), (3, 3): ('circle', 'black'), (3, 4): ('triangle', 'black'), (3, 5): ('square', 'white'), (3, 6): ('triangle', 'black'), (3, 7): ('square', 'white'), (3, 8): ('triangle', 'white'), (4, 0): ('circle', 'black'), (4, 1): ('triangle', 'black'), (4, 2): ('circle', 'black'), (4, 3): ('square', 'black'), (4, 4): ('square', 'black'), (4, 5): ('circle', 'black'), (4, 6): ('square', 'white'), (4, 7): ('square', 'black'), (4, 8): ('triangle', 'white'), (5, 0): ('triangle', 'white'), (5, 1): ('square', 'black'), (5, 2): ('square', 'white'), (5, 3): ('triangle', 'black'), (5, 4): ('circle', 'black'), (5, 5): ('circle', 'white'), (5, 6): ('triangle', 'black'), (5, 7): ('triangle', 'white'), (5, 8): ('square', 'black'), (6, 0): ('circle', 'white'), (6, 1): ('triangle', 'black'), (6, 2): ('circle', 'white'), (6, 3): ('triangle', 'black'), (6, 4): ('circle', 'black'), (6, 5): ('square', 'black'), (6, 6): ('circle', 'white'), (6, 7): ('circle', 'black'), (6, 8): ('circle', 'black'), (7, 0): ('triangle', 'black'), (7, 1): ('triangle', 'white'), (7, 2): ('circle', 'white'), (7, 3): ('square', 'white'), (7, 4): ('triangle', 'white'), (7, 5): ('triangle', 'white'), (7, 6): ('triangle', 'black'), (7, 7): ('circle', 'white'), (7, 8): ('square', 'black'), (8, 0): ('triangle', 'white'), (8, 1): ('circle', 'black'), (8, 2): ('square', 'black'), (8, 3): ('circle', 'black'), (8, 4): ('square', 'black'), (8, 5): ('circle', 'white'), (8, 6): ('triangle', 'black'), (8, 7): ('square', 'black'), (8, 8): ('triangle', 'black')}, {(0, 0): ('circle', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('circle', 'white'), (0, 3): ('square', 'white'), (0, 4): ('square', 'black'), (0, 5): ('square', 'white'), (0, 6): ('triangle', 'white'), (0, 7): ('triangle', 'white'), (0, 8): ('square', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('square', 'black'), (1, 2): ('square', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('square', 'black'), (1, 5): ('square', 'black'), (1, 6): ('triangle', 'black'), (1, 7): ('circle', 'white'), (1, 8): ('circle', 'black'), (2, 0): ('square', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('square', 'black'), (2, 3): ('square', 'black'), (2, 4): ('square', 'black'), (2, 5): ('circle', 'black'), (2, 6): ('triangle', 'black'), (2, 7): ('circle', 'black'), (2, 8): ('triangle', 'white'), (3, 0): ('square', 'white'), (3, 1): ('square', 'white'), (3, 2): ('square', 'black'), (3, 3): ('circle', 'black'), (3, 4): ('square', 'black'), (3, 5): ('triangle', 'white'), (3, 6): ('circle', 'white'), (3, 7): ('circle', 'black'), (3, 8): ('square', 'black'), (4, 0): ('square', 'black'), (4, 1): ('triangle', 'black'), (4, 2): ('triangle', 'black'), (4, 3): ('circle', 'white'), (4, 4): ('square', 'black'), (4, 5): ('square', 'black'), (4, 6): ('triangle', 'white'), (4, 7): ('triangle', 'black'), (4, 8): ('triangle', 'white'), (5, 0): ('square', 'black'), (5, 1): ('triangle', 'black'), (5, 2): ('triangle', 'black'), (5, 3): ('triangle', 'black'), (5, 4): ('triangle', 'white'), (5, 5): ('circle', 'white'), (5, 6): ('triangle', 'white'), (5, 7): ('triangle', 'white'), (5, 8): ('square', 'black'), (6, 0): ('triangle', 'white'), (6, 1): ('triangle', 'white'), (6, 2): ('triangle', 'black'), (6, 3): ('triangle', 'white'), (6, 4): ('triangle', 'black'), (6, 5): ('circle', 'black'), (6, 6): ('triangle', 'white'), (6, 7): ('circle', 'black'), (6, 8): ('triangle', 'black'), (7, 0): ('square', 'white'), (7, 1): ('circle', 'white'), (7, 2): ('triangle', 'black'), (7, 3): ('triangle', 'white'), (7, 4): ('triangle', 'black'), (7, 5): ('triangle', 'black'), (7, 6): ('triangle', 'white'), (7, 7): ('square', 'black'), (7, 8): ('triangle', 'black'), (8, 0): ('square', 'black'), (8, 1): ('circle', 'white'), (8, 2): ('square', 'white'), (8, 3): ('triangle', 'black'), (8, 4): ('circle', 'black'), (8, 5): ('square', 'white'), (8, 6): ('square', 'white'), (8, 7): ('triangle', 'white'), (8, 8): ('triangle', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('square', 'black'), (0, 3): ('circle', 'white'), (0, 4): ('circle', 'white'), (0, 5): ('circle', 'black'), (0, 6): ('triangle', 'white'), (0, 7): ('circle', 'white'), (0, 8): ('circle', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('square', 'black'), (1, 3): ('square', 'white'), (1, 4): ('square', 'white'), (1, 5): ('triangle', 'white'), (1, 6): ('circle', 'black'), (1, 7): ('square', 'white'), (1, 8): ('circle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('triangle', 'white'), (2, 4): ('square', 'black'), (2, 5): ('square', 'white'), (2, 6): ('circle', 'black'), (2, 7): ('triangle', 'black'), (2, 8): ('triangle', 'black'), (3, 0): ('triangle', 'white'), (3, 1): ('circle', 'white'), (3, 2): ('square', 'white'), (3, 3): ('triangle', 'white'), (3, 4): ('circle', 'white'), (3, 5): ('square', 'black'), (3, 6): ('square', 'black'), (3, 7): ('square', 'white'), (3, 8): ('circle', 'black'), (4, 0): ('circle', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('square', 'white'), (4, 3): ('triangle', 'white'), (4, 4): ('circle', 'white'), (4, 5): ('triangle', 'black'), (4, 6): ('triangle', 'black'), (4, 7): ('triangle', 'black'), (4, 8): ('square', 'black'), (5, 0): ('circle', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('circle', 'white'), (5, 3): ('circle', 'white'), (5, 4): ('triangle', 'white'), (5, 5): ('circle', 'black'), (5, 6): ('square', 'white'), (5, 7): ('square', 'white'), (5, 8): ('circle', 'white'), (6, 0): ('square', 'black'), (6, 1): ('triangle', 'white'), (6, 2): ('circle', 'white'), (6, 3): ('triangle', 'white'), (6, 4): ('circle', 'white'), (6, 5): ('circle', 'black'), (6, 6): ('square', 'black'), (6, 7): ('square', 'black'), (6, 8): ('triangle', 'black'), (7, 0): ('triangle', 'black'), (7, 1): ('triangle', 'white'), (7, 2): ('triangle', 'black'), (7, 3): ('square', 'white'), (7, 4): ('square', 'black'), (7, 5): ('circle', 'black'), (7, 6): ('circle', 'white'), (7, 7): ('triangle', 'white'), (7, 8): ('circle', 'white'), (8, 0): ('circle', 'white'), (8, 1): ('circle', 'white'), (8, 2): ('circle', 'white'), (8, 3): ('triangle', 'white'), (8, 4): ('square', 'white'), (8, 5): ('circle', 'white'), (8, 6): ('square', 'black'), (8, 7): ('triangle', 'white'), (8, 8): ('square', 'white')}]","(9, 9, 3)"
+259.svg,"[{(0, 0): ('square', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'black'), (0, 3): ('triangle', 'white'), (0, 4): ('triangle', 'black'), (0, 5): ('triangle', 'white'), (0, 6): ('triangle', 'white'), (0, 7): ('triangle', 'black'), (0, 8): ('square', 'black'), (1, 0): ('circle', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('square', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('triangle', 'white'), (1, 6): ('triangle', 'white'), (1, 7): ('circle', 'white'), (1, 8): ('circle', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('triangle', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('circle', 'black'), (2, 6): ('square', 'white'), (2, 7): ('square', 'black'), (2, 8): ('triangle', 'white'), (3, 0): ('square', 'white'), (3, 1): ('square', 'black'), (3, 2): ('triangle', 'white'), (3, 3): ('square', 'white'), (3, 4): ('triangle', 'black'), (3, 5): ('triangle', 'white'), (3, 6): ('square', 'black'), (3, 7): ('triangle', 'black'), (3, 8): ('circle', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('circle', 'white'), (4, 2): ('triangle', 'white'), (4, 3): ('square', 'white'), (4, 4): ('square', 'black'), (4, 5): ('square', 'white'), (4, 6): ('triangle', 'white'), (4, 7): ('circle', 'white'), (4, 8): ('triangle', 'black'), (5, 0): ('circle', 'white'), (5, 1): ('triangle', 'white'), (5, 2): ('square', 'white'), (5, 3): ('circle', 'white'), (5, 4): ('triangle', 'black'), (5, 5): ('triangle', 'white'), (5, 6): ('triangle', 'white'), (5, 7): ('triangle', 'white'), (5, 8): ('circle', 'white'), (6, 0): ('square', 'white'), (6, 1): ('triangle', 'white'), (6, 2): ('square', 'white'), (6, 3): ('circle', 'black'), (6, 4): ('triangle', 'black'), (6, 5): ('square', 'black'), (6, 6): ('circle', 'black'), (6, 7): ('circle', 'black'), (6, 8): ('triangle', 'black'), (7, 0): ('circle', 'white'), (7, 1): ('circle', 'black'), (7, 2): ('triangle', 'white'), (7, 3): ('circle', 'white'), (7, 4): ('triangle', 'white'), (7, 5): ('square', 'white'), (7, 6): ('circle', 'black'), (7, 7): ('triangle', 'black'), (7, 8): ('circle', 'black'), (8, 0): ('triangle', 'black'), (8, 1): ('triangle', 'white'), (8, 2): ('triangle', 'white'), (8, 3): ('circle', 'black'), (8, 4): ('square', 'white'), (8, 5): ('circle', 'black'), (8, 6): ('circle', 'white'), (8, 7): ('circle', 'black'), (8, 8): ('circle', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('square', 'black'), (0, 3): ('square', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('triangle', 'white'), (0, 6): ('circle', 'white'), (0, 7): ('circle', 'black'), (0, 8): ('square', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('triangle', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('square', 'white'), (1, 6): ('triangle', 'black'), (1, 7): ('square', 'white'), (1, 8): ('triangle', 'black'), (2, 0): ('square', 'white'), (2, 1): ('square', 'white'), (2, 2): ('square', 'black'), (2, 3): ('square', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('triangle', 'black'), (2, 6): ('triangle', 'white'), (2, 7): ('square', 'black'), (2, 8): ('circle', 'white'), (3, 0): ('circle', 'white'), (3, 1): ('square', 'white'), (3, 2): ('triangle', 'black'), (3, 3): ('square', 'black'), (3, 4): ('circle', 'white'), (3, 5): ('circle', 'black'), (3, 6): ('square', 'black'), (3, 7): ('circle', 'white'), (3, 8): ('circle', 'white'), (4, 0): ('triangle', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('triangle', 'white'), (4, 3): ('circle', 'white'), (4, 4): ('square', 'black'), (4, 5): ('triangle', 'black'), (4, 6): ('triangle', 'white'), (4, 7): ('square', 'white'), (4, 8): ('square', 'black'), (5, 0): ('circle', 'black'), (5, 1): ('square', 'black'), (5, 2): ('triangle', 'white'), (5, 3): ('triangle', 'black'), (5, 4): ('circle', 'white'), (5, 5): ('triangle', 'white'), (5, 6): ('circle', 'black'), (5, 7): ('circle', 'white'), (5, 8): ('triangle', 'white'), (6, 0): ('circle', 'white'), (6, 1): ('square', 'black'), (6, 2): ('square', 'black'), (6, 3): ('triangle', 'black'), (6, 4): ('circle', 'white'), (6, 5): ('circle', 'white'), (6, 6): ('square', 'black'), (6, 7): ('triangle', 'white'), (6, 8): ('circle', 'black'), (7, 0): ('triangle', 'black'), (7, 1): ('square', 'white'), (7, 2): ('triangle', 'black'), (7, 3): ('square', 'white'), (7, 4): ('triangle', 'white'), (7, 5): ('circle', 'black'), (7, 6): ('triangle', 'white'), (7, 7): ('square', 'black'), (7, 8): ('square', 'black'), (8, 0): ('circle', 'white'), (8, 1): ('circle', 'white'), (8, 2): ('circle', 'white'), (8, 3): ('square', 'white'), (8, 4): ('circle', 'black'), (8, 5): ('triangle', 'white'), (8, 6): ('square', 'white'), (8, 7): ('circle', 'black'), (8, 8): ('square', 'black')}, {(0, 0): ('triangle', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('square', 'black'), (0, 5): ('circle', 'white'), (0, 6): ('circle', 'black'), (0, 7): ('triangle', 'black'), (0, 8): ('square', 'white'), (1, 0): ('circle', 'white'), (1, 1): ('square', 'black'), (1, 2): ('circle', 'black'), (1, 3): ('square', 'black'), (1, 4): ('square', 'black'), (1, 5): ('square', 'white'), (1, 6): ('circle', 'white'), (1, 7): ('triangle', 'white'), (1, 8): ('triangle', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('circle', 'white'), (2, 3): ('square', 'black'), (2, 4): ('square', 'white'), (2, 5): ('triangle', 'white'), (2, 6): ('triangle', 'white'), (2, 7): ('circle', 'black'), (2, 8): ('circle', 'black'), (3, 0): ('circle', 'white'), (3, 1): ('square', 'black'), (3, 2): ('square', 'black'), (3, 3): ('triangle', 'black'), (3, 4): ('circle', 'white'), (3, 5): ('square', 'white'), (3, 6): ('square', 'black'), (3, 7): ('square', 'white'), (3, 8): ('triangle', 'white'), (4, 0): ('square', 'black'), (4, 1): ('triangle', 'white'), (4, 2): ('square', 'white'), (4, 3): ('square', 'white'), (4, 4): ('square', 'white'), (4, 5): ('triangle', 'white'), (4, 6): ('circle', 'black'), (4, 7): ('circle', 'white'), (4, 8): ('square', 'black'), (5, 0): ('triangle', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('triangle', 'white'), (5, 3): ('triangle', 'black'), (5, 4): ('triangle', 'black'), (5, 5): ('circle', 'black'), (5, 6): ('square', 'black'), (5, 7): ('triangle', 'white'), (5, 8): ('triangle', 'black'), (6, 0): ('square', 'black'), (6, 1): ('circle', 'black'), (6, 2): ('square', 'white'), (6, 3): ('square', 'black'), (6, 4): ('circle', 'white'), (6, 5): ('square', 'black'), (6, 6): ('triangle', 'black'), (6, 7): ('square', 'white'), (6, 8): ('square', 'black'), (7, 0): ('triangle', 'black'), (7, 1): ('triangle', 'black'), (7, 2): ('square', 'black'), (7, 3): ('circle', 'black'), (7, 4): ('circle', 'white'), (7, 5): ('triangle', 'black'), (7, 6): ('circle', 'white'), (7, 7): ('circle', 'white'), (7, 8): ('triangle', 'white'), (8, 0): ('triangle', 'white'), (8, 1): ('square', 'black'), (8, 2): ('square', 'black'), (8, 3): ('circle', 'white'), (8, 4): ('square', 'black'), (8, 5): ('triangle', 'white'), (8, 6): ('square', 'white'), (8, 7): ('circle', 'white'), (8, 8): ('circle', 'black')}]","(9, 9, 3)"
+260.svg,"[{(0, 0): ('circle', 'black'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('square', 'white'), (0, 4): ('triangle', 'white'), (0, 5): ('triangle', 'white'), (0, 6): ('square', 'white'), (0, 7): ('circle', 'black'), (0, 8): ('square', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('square', 'black'), (1, 3): ('circle', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('triangle', 'black'), (1, 6): ('triangle', 'white'), (1, 7): ('square', 'black'), (1, 8): ('circle', 'black'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('triangle', 'white'), (2, 3): ('square', 'white'), (2, 4): ('circle', 'black'), (2, 5): ('circle', 'white'), (2, 6): ('square', 'white'), (2, 7): ('triangle', 'black'), (2, 8): ('square', 'black'), (3, 0): ('circle', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('square', 'white'), (3, 3): ('triangle', 'black'), (3, 4): ('circle', 'white'), (3, 5): ('circle', 'black'), (3, 6): ('square', 'white'), (3, 7): ('circle', 'black'), (3, 8): ('circle', 'black'), (4, 0): ('triangle', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('square', 'white'), (4, 3): ('triangle', 'white'), (4, 4): ('triangle', 'white'), (4, 5): ('triangle', 'white'), (4, 6): ('triangle', 'white'), (4, 7): ('square', 'white'), (4, 8): ('circle', 'black'), (5, 0): ('triangle', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('square', 'white'), (5, 3): ('square', 'white'), (5, 4): ('circle', 'white'), (5, 5): ('circle', 'black'), (5, 6): ('triangle', 'white'), (5, 7): ('square', 'white'), (5, 8): ('circle', 'white'), (6, 0): ('square', 'white'), (6, 1): ('triangle', 'white'), (6, 2): ('circle', 'black'), (6, 3): ('circle', 'black'), (6, 4): ('square', 'black'), (6, 5): ('square', 'black'), (6, 6): ('triangle', 'white'), (6, 7): ('square', 'black'), (6, 8): ('triangle', 'black'), (7, 0): ('circle', 'black'), (7, 1): ('square', 'black'), (7, 2): ('square', 'white'), (7, 3): ('triangle', 'white'), (7, 4): ('square', 'white'), (7, 5): ('triangle', 'black'), (7, 6): ('square', 'black'), (7, 7): ('circle', 'white'), (7, 8): ('square', 'black'), (8, 0): ('circle', 'black'), (8, 1): ('square', 'white'), (8, 2): ('circle', 'black'), (8, 3): ('square', 'black'), (8, 4): ('circle', 'black'), (8, 5): ('triangle', 'black'), (8, 6): ('circle', 'black'), (8, 7): ('circle', 'black'), (8, 8): ('square', 'black')}, {(0, 0): ('triangle', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'black'), (0, 3): ('circle', 'white'), (0, 4): ('circle', 'black'), (0, 5): ('circle', 'black'), (0, 6): ('square', 'white'), (0, 7): ('circle', 'white'), (0, 8): ('triangle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'black'), (1, 3): ('square', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('square', 'black'), (1, 6): ('circle', 'white'), (1, 7): ('triangle', 'black'), (1, 8): ('square', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'white'), (2, 3): ('circle', 'white'), (2, 4): ('square', 'black'), (2, 5): ('square', 'white'), (2, 6): ('circle', 'black'), (2, 7): ('circle', 'white'), (2, 8): ('circle', 'black'), (3, 0): ('circle', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('circle', 'white'), (3, 3): ('triangle', 'black'), (3, 4): ('circle', 'black'), (3, 5): ('circle', 'black'), (3, 6): ('triangle', 'black'), (3, 7): ('square', 'black'), (3, 8): ('triangle', 'white'), (4, 0): ('square', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('square', 'black'), (4, 3): ('triangle', 'white'), (4, 4): ('triangle', 'white'), (4, 5): ('triangle', 'black'), (4, 6): ('circle', 'white'), (4, 7): ('circle', 'black'), (4, 8): ('circle', 'black'), (5, 0): ('triangle', 'white'), (5, 1): ('triangle', 'black'), (5, 2): ('circle', 'black'), (5, 3): ('circle', 'white'), (5, 4): ('square', 'white'), (5, 5): ('square', 'white'), (5, 6): ('triangle', 'white'), (5, 7): ('square', 'black'), (5, 8): ('triangle', 'white'), (6, 0): ('circle', 'black'), (6, 1): ('triangle', 'black'), (6, 2): ('square', 'white'), (6, 3): ('triangle', 'white'), (6, 4): ('circle', 'white'), (6, 5): ('circle', 'white'), (6, 6): ('square', 'black'), (6, 7): ('square', 'black'), (6, 8): ('circle', 'white'), (7, 0): ('square', 'black'), (7, 1): ('triangle', 'white'), (7, 2): ('triangle', 'black'), (7, 3): ('circle', 'black'), (7, 4): ('circle', 'white'), (7, 5): ('square', 'black'), (7, 6): ('square', 'white'), (7, 7): ('triangle', 'black'), (7, 8): ('triangle', 'white'), (8, 0): ('square', 'black'), (8, 1): ('square', 'white'), (8, 2): ('square', 'white'), (8, 3): ('square', 'black'), (8, 4): ('triangle', 'black'), (8, 5): ('circle', 'black'), (8, 6): ('square', 'black'), (8, 7): ('circle', 'black'), (8, 8): ('circle', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('square', 'black'), (0, 2): ('square', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('square', 'black'), (0, 6): ('circle', 'white'), (0, 7): ('triangle', 'black'), (0, 8): ('circle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'black'), (1, 3): ('square', 'black'), (1, 4): ('square', 'white'), (1, 5): ('square', 'white'), (1, 6): ('triangle', 'white'), (1, 7): ('circle', 'black'), (1, 8): ('circle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'black'), (2, 2): ('triangle', 'black'), (2, 3): ('triangle', 'black'), (2, 4): ('square', 'black'), (2, 5): ('square', 'white'), (2, 6): ('triangle', 'white'), (2, 7): ('square', 'white'), (2, 8): ('triangle', 'black'), (3, 0): ('circle', 'white'), (3, 1): ('circle', 'white'), (3, 2): ('triangle', 'white'), (3, 3): ('circle', 'black'), (3, 4): ('triangle', 'black'), (3, 5): ('square', 'white'), (3, 6): ('triangle', 'white'), (3, 7): ('circle', 'black'), (3, 8): ('square', 'white'), (4, 0): ('square', 'white'), (4, 1): ('square', 'white'), (4, 2): ('triangle', 'white'), (4, 3): ('square', 'white'), (4, 4): ('circle', 'white'), (4, 5): ('triangle', 'black'), (4, 6): ('circle', 'black'), (4, 7): ('circle', 'black'), (4, 8): ('circle', 'white'), (5, 0): ('triangle', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('circle', 'white'), (5, 3): ('circle', 'white'), (5, 4): ('circle', 'white'), (5, 5): ('square', 'black'), (5, 6): ('triangle', 'white'), (5, 7): ('circle', 'black'), (5, 8): ('circle', 'white'), (6, 0): ('circle', 'white'), (6, 1): ('triangle', 'white'), (6, 2): ('triangle', 'white'), (6, 3): ('square', 'white'), (6, 4): ('circle', 'white'), (6, 5): ('triangle', 'black'), (6, 6): ('square', 'white'), (6, 7): ('triangle', 'black'), (6, 8): ('circle', 'white'), (7, 0): ('circle', 'white'), (7, 1): ('triangle', 'black'), (7, 2): ('circle', 'white'), (7, 3): ('circle', 'black'), (7, 4): ('square', 'black'), (7, 5): ('circle', 'white'), (7, 6): ('triangle', 'black'), (7, 7): ('circle', 'white'), (7, 8): ('circle', 'white'), (8, 0): ('square', 'black'), (8, 1): ('circle', 'white'), (8, 2): ('square', 'white'), (8, 3): ('circle', 'black'), (8, 4): ('circle', 'white'), (8, 5): ('circle', 'black'), (8, 6): ('square', 'black'), (8, 7): ('circle', 'black'), (8, 8): ('circle', 'black')}, {(0, 0): ('square', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('triangle', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('triangle', 'black'), (0, 6): ('circle', 'white'), (0, 7): ('square', 'white'), (0, 8): ('square', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('circle', 'black'), (1, 3): ('triangle', 'black'), (1, 4): ('triangle', 'black'), (1, 5): ('circle', 'black'), (1, 6): ('circle', 'black'), (1, 7): ('triangle', 'white'), (1, 8): ('triangle', 'white'), (2, 0): ('square', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('square', 'white'), (2, 3): ('circle', 'white'), (2, 4): ('square', 'white'), (2, 5): ('square', 'white'), (2, 6): ('square', 'white'), (2, 7): ('square', 'white'), (2, 8): ('square', 'black'), (3, 0): ('triangle', 'white'), (3, 1): ('square', 'black'), (3, 2): ('triangle', 'black'), (3, 3): ('triangle', 'white'), (3, 4): ('triangle', 'black'), (3, 5): ('square', 'black'), (3, 6): ('square', 'white'), (3, 7): ('circle', 'black'), (3, 8): ('square', 'white'), (4, 0): ('circle', 'white'), (4, 1): ('circle', 'black'), (4, 2): ('square', 'white'), (4, 3): ('square', 'white'), (4, 4): ('circle', 'white'), (4, 5): ('square', 'white'), (4, 6): ('circle', 'white'), (4, 7): ('square', 'white'), (4, 8): ('circle', 'black'), (5, 0): ('circle', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('square', 'white'), (5, 3): ('circle', 'white'), (5, 4): ('triangle', 'white'), (5, 5): ('square', 'white'), (5, 6): ('square', 'black'), (5, 7): ('triangle', 'black'), (5, 8): ('circle', 'black'), (6, 0): ('square', 'white'), (6, 1): ('square', 'black'), (6, 2): ('triangle', 'white'), (6, 3): ('square', 'black'), (6, 4): ('triangle', 'white'), (6, 5): ('square', 'black'), (6, 6): ('triangle', 'white'), (6, 7): ('triangle', 'black'), (6, 8): ('circle', 'white'), (7, 0): ('circle', 'white'), (7, 1): ('square', 'black'), (7, 2): ('triangle', 'white'), (7, 3): ('triangle', 'white'), (7, 4): ('square', 'black'), (7, 5): ('circle', 'black'), (7, 6): ('square', 'white'), (7, 7): ('triangle', 'white'), (7, 8): ('triangle', 'black'), (8, 0): ('square', 'white'), (8, 1): ('square', 'white'), (8, 2): ('square', 'white'), (8, 3): ('triangle', 'white'), (8, 4): ('square', 'black'), (8, 5): ('circle', 'black'), (8, 6): ('square', 'black'), (8, 7): ('square', 'white'), (8, 8): ('triangle', 'black')}, {(0, 0): ('circle', 'white'), (0, 1): ('square', 'black'), (0, 2): ('square', 'white'), (0, 3): ('square', 'white'), (0, 4): ('triangle', 'white'), (0, 5): ('triangle', 'white'), (0, 6): ('square', 'black'), (0, 7): ('square', 'black'), (0, 8): ('triangle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('triangle', 'black'), (1, 3): ('triangle', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('circle', 'black'), (1, 6): ('triangle', 'black'), (1, 7): ('square', 'black'), (1, 8): ('circle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('square', 'white'), (2, 3): ('triangle', 'white'), (2, 4): ('circle', 'white'), (2, 5): ('circle', 'black'), (2, 6): ('triangle', 'white'), (2, 7): ('triangle', 'white'), (2, 8): ('square', 'black'), (3, 0): ('square', 'white'), (3, 1): ('square', 'white'), (3, 2): ('square', 'black'), (3, 3): ('square', 'black'), (3, 4): ('triangle', 'white'), (3, 5): ('square', 'black'), (3, 6): ('triangle', 'white'), (3, 7): ('circle', 'white'), (3, 8): ('square', 'white'), (4, 0): ('triangle', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('triangle', 'white'), (4, 3): ('triangle', 'white'), (4, 4): ('circle', 'black'), (4, 5): ('triangle', 'white'), (4, 6): ('square', 'black'), (4, 7): ('triangle', 'black'), (4, 8): ('square', 'black'), (5, 0): ('square', 'white'), (5, 1): ('square', 'white'), (5, 2): ('triangle', 'black'), (5, 3): ('circle', 'white'), (5, 4): ('square', 'black'), (5, 5): ('circle', 'white'), (5, 6): ('triangle', 'black'), (5, 7): ('square', 'black'), (5, 8): ('triangle', 'black'), (6, 0): ('circle', 'white'), (6, 1): ('triangle', 'white'), (6, 2): ('square', 'white'), (6, 3): ('circle', 'white'), (6, 4): ('circle', 'white'), (6, 5): ('triangle', 'black'), (6, 6): ('circle', 'black'), (6, 7): ('square', 'black'), (6, 8): ('square', 'white'), (7, 0): ('square', 'black'), (7, 1): ('triangle', 'black'), (7, 2): ('square', 'black'), (7, 3): ('circle', 'white'), (7, 4): ('circle', 'black'), (7, 5): ('square', 'white'), (7, 6): ('circle', 'black'), (7, 7): ('triangle', 'white'), (7, 8): ('triangle', 'white'), (8, 0): ('square', 'black'), (8, 1): ('triangle', 'white'), (8, 2): ('triangle', 'black'), (8, 3): ('triangle', 'white'), (8, 4): ('square', 'black'), (8, 5): ('circle', 'black'), (8, 6): ('square', 'white'), (8, 7): ('triangle', 'white'), (8, 8): ('square', 'black')}]","(9, 9, 5)"
+261.svg,"[{(0, 0): ('square', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'white'), (0, 3): ('triangle', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('circle', 'black'), (0, 6): ('square', 'black'), (0, 7): ('circle', 'black'), (0, 8): ('triangle', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('triangle', 'black'), (1, 3): ('circle', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('square', 'white'), (1, 6): ('triangle', 'black'), (1, 7): ('triangle', 'black'), (1, 8): ('square', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('circle', 'black'), (2, 4): ('circle', 'black'), (2, 5): ('triangle', 'white'), (2, 6): ('triangle', 'white'), (2, 7): ('circle', 'black'), (2, 8): ('circle', 'black'), (3, 0): ('circle', 'white'), (3, 1): ('triangle', 'white'), (3, 2): ('triangle', 'black'), (3, 3): ('circle', 'black'), (3, 4): ('circle', 'white'), (3, 5): ('circle', 'black'), (3, 6): ('triangle', 'white'), (3, 7): ('square', 'white'), (3, 8): ('circle', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('square', 'black'), (4, 2): ('square', 'black'), (4, 3): ('triangle', 'black'), (4, 4): ('circle', 'black'), (4, 5): ('triangle', 'white'), (4, 6): ('square', 'black'), (4, 7): ('square', 'white'), (4, 8): ('circle', 'black'), (5, 0): ('circle', 'white'), (5, 1): ('triangle', 'black'), (5, 2): ('square', 'black'), (5, 3): ('circle', 'white'), (5, 4): ('triangle', 'white'), (5, 5): ('circle', 'white'), (5, 6): ('circle', 'white'), (5, 7): ('triangle', 'black'), (5, 8): ('triangle', 'white'), (6, 0): ('triangle', 'white'), (6, 1): ('square', 'white'), (6, 2): ('square', 'white'), (6, 3): ('circle', 'white'), (6, 4): ('triangle', 'white'), (6, 5): ('circle', 'black'), (6, 6): ('square', 'black'), (6, 7): ('square', 'white'), (6, 8): ('square', 'white'), (7, 0): ('circle', 'white'), (7, 1): ('square', 'white'), (7, 2): ('circle', 'white'), (7, 3): ('square', 'black'), (7, 4): ('square', 'white'), (7, 5): ('triangle', 'black'), (7, 6): ('square', 'black'), (7, 7): ('circle', 'white'), (7, 8): ('triangle', 'white'), (8, 0): ('square', 'white'), (8, 1): ('circle', 'white'), (8, 2): ('circle', 'white'), (8, 3): ('square', 'white'), (8, 4): ('triangle', 'black'), (8, 5): ('square', 'white'), (8, 6): ('circle', 'black'), (8, 7): ('square', 'white'), (8, 8): ('circle', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('triangle', 'white'), (0, 6): ('square', 'black'), (0, 7): ('circle', 'white'), (0, 8): ('circle', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('square', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('triangle', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('triangle', 'black'), (1, 6): ('triangle', 'black'), (1, 7): ('triangle', 'white'), (1, 8): ('square', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('triangle', 'white'), (2, 5): ('square', 'white'), (2, 6): ('circle', 'black'), (2, 7): ('circle', 'black'), (2, 8): ('square', 'white'), (3, 0): ('square', 'white'), (3, 1): ('circle', 'black'), (3, 2): ('square', 'white'), (3, 3): ('triangle', 'black'), (3, 4): ('circle', 'black'), (3, 5): ('circle', 'black'), (3, 6): ('triangle', 'white'), (3, 7): ('triangle', 'black'), (3, 8): ('square', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('square', 'white'), (4, 2): ('square', 'black'), (4, 3): ('triangle', 'white'), (4, 4): ('circle', 'white'), (4, 5): ('circle', 'white'), (4, 6): ('circle', 'black'), (4, 7): ('circle', 'white'), (4, 8): ('triangle', 'white'), (5, 0): ('circle', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('circle', 'black'), (5, 3): ('circle', 'black'), (5, 4): ('square', 'black'), (5, 5): ('circle', 'white'), (5, 6): ('circle', 'white'), (5, 7): ('triangle', 'black'), (5, 8): ('triangle', 'black'), (6, 0): ('triangle', 'white'), (6, 1): ('circle', 'black'), (6, 2): ('circle', 'white'), (6, 3): ('triangle', 'white'), (6, 4): ('triangle', 'white'), (6, 5): ('triangle', 'white'), (6, 6): ('square', 'black'), (6, 7): ('square', 'black'), (6, 8): ('triangle', 'white'), (7, 0): ('circle', 'white'), (7, 1): ('square', 'white'), (7, 2): ('circle', 'white'), (7, 3): ('square', 'black'), (7, 4): ('circle', 'black'), (7, 5): ('square', 'black'), (7, 6): ('square', 'black'), (7, 7): ('square', 'white'), (7, 8): ('triangle', 'black'), (8, 0): ('triangle', 'black'), (8, 1): ('triangle', 'white'), (8, 2): ('square', 'white'), (8, 3): ('triangle', 'white'), (8, 4): ('triangle', 'white'), (8, 5): ('triangle', 'black'), (8, 6): ('circle', 'white'), (8, 7): ('circle', 'white'), (8, 8): ('square', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('triangle', 'white'), (0, 4): ('circle', 'white'), (0, 5): ('triangle', 'black'), (0, 6): ('circle', 'black'), (0, 7): ('triangle', 'black'), (0, 8): ('triangle', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('square', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('triangle', 'white'), (1, 4): ('square', 'white'), (1, 5): ('circle', 'white'), (1, 6): ('triangle', 'white'), (1, 7): ('circle', 'white'), (1, 8): ('circle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'white'), (2, 2): ('square', 'black'), (2, 3): ('circle', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('square', 'black'), (2, 6): ('triangle', 'white'), (2, 7): ('square', 'white'), (2, 8): ('triangle', 'black'), (3, 0): ('circle', 'black'), (3, 1): ('square', 'white'), (3, 2): ('square', 'black'), (3, 3): ('circle', 'black'), (3, 4): ('triangle', 'white'), (3, 5): ('circle', 'black'), (3, 6): ('triangle', 'white'), (3, 7): ('circle', 'white'), (3, 8): ('square', 'black'), (4, 0): ('triangle', 'white'), (4, 1): ('square', 'white'), (4, 2): ('triangle', 'white'), (4, 3): ('triangle', 'white'), (4, 4): ('circle', 'white'), (4, 5): ('square', 'black'), (4, 6): ('triangle', 'black'), (4, 7): ('square', 'black'), (4, 8): ('square', 'white'), (5, 0): ('triangle', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('square', 'white'), (5, 3): ('circle', 'white'), (5, 4): ('square', 'black'), (5, 5): ('triangle', 'white'), (5, 6): ('circle', 'black'), (5, 7): ('square', 'black'), (5, 8): ('square', 'black'), (6, 0): ('square', 'black'), (6, 1): ('square', 'white'), (6, 2): ('triangle', 'white'), (6, 3): ('triangle', 'black'), (6, 4): ('triangle', 'black'), (6, 5): ('square', 'black'), (6, 6): ('triangle', 'black'), (6, 7): ('circle', 'black'), (6, 8): ('triangle', 'white'), (7, 0): ('circle', 'black'), (7, 1): ('square', 'black'), (7, 2): ('triangle', 'white'), (7, 3): ('square', 'white'), (7, 4): ('triangle', 'black'), (7, 5): ('circle', 'black'), (7, 6): ('circle', 'white'), (7, 7): ('circle', 'white'), (7, 8): ('triangle', 'white'), (8, 0): ('square', 'white'), (8, 1): ('circle', 'white'), (8, 2): ('circle', 'white'), (8, 3): ('triangle', 'white'), (8, 4): ('circle', 'black'), (8, 5): ('circle', 'white'), (8, 6): ('triangle', 'white'), (8, 7): ('circle', 'white'), (8, 8): ('circle', 'white')}, {(0, 0): ('circle', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('square', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('triangle', 'white'), (0, 6): ('triangle', 'black'), (0, 7): ('square', 'black'), (0, 8): ('circle', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'white'), (1, 3): ('triangle', 'white'), (1, 4): ('triangle', 'black'), (1, 5): ('circle', 'black'), (1, 6): ('triangle', 'black'), (1, 7): ('circle', 'black'), (1, 8): ('circle', 'black'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('triangle', 'black'), (2, 4): ('square', 'black'), (2, 5): ('triangle', 'black'), (2, 6): ('square', 'black'), (2, 7): ('circle', 'white'), (2, 8): ('circle', 'black'), (3, 0): ('triangle', 'white'), (3, 1): ('circle', 'black'), (3, 2): ('square', 'white'), (3, 3): ('square', 'white'), (3, 4): ('circle', 'black'), (3, 5): ('circle', 'white'), (3, 6): ('triangle', 'black'), (3, 7): ('triangle', 'black'), (3, 8): ('square', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('circle', 'white'), (4, 2): ('circle', 'black'), (4, 3): ('square', 'black'), (4, 4): ('circle', 'white'), (4, 5): ('triangle', 'black'), (4, 6): ('triangle', 'white'), (4, 7): ('square', 'white'), (4, 8): ('square', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('triangle', 'black'), (5, 3): ('square', 'white'), (5, 4): ('triangle', 'white'), (5, 5): ('triangle', 'white'), (5, 6): ('square', 'black'), (5, 7): ('square', 'black'), (5, 8): ('square', 'black'), (6, 0): ('triangle', 'white'), (6, 1): ('circle', 'black'), (6, 2): ('circle', 'black'), (6, 3): ('circle', 'white'), (6, 4): ('square', 'black'), (6, 5): ('circle', 'black'), (6, 6): ('circle', 'white'), (6, 7): ('triangle', 'white'), (6, 8): ('square', 'white'), (7, 0): ('circle', 'white'), (7, 1): ('square', 'black'), (7, 2): ('square', 'white'), (7, 3): ('square', 'white'), (7, 4): ('circle', 'black'), (7, 5): ('square', 'black'), (7, 6): ('triangle', 'black'), (7, 7): ('circle', 'black'), (7, 8): ('triangle', 'black'), (8, 0): ('square', 'black'), (8, 1): ('square', 'black'), (8, 2): ('circle', 'black'), (8, 3): ('triangle', 'white'), (8, 4): ('triangle', 'white'), (8, 5): ('square', 'white'), (8, 6): ('square', 'black'), (8, 7): ('triangle', 'white'), (8, 8): ('square', 'black')}, {(0, 0): ('triangle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('square', 'black'), (0, 3): ('square', 'black'), (0, 4): ('circle', 'black'), (0, 5): ('triangle', 'white'), (0, 6): ('square', 'white'), (0, 7): ('square', 'black'), (0, 8): ('square', 'white'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'white'), (1, 3): ('triangle', 'white'), (1, 4): ('square', 'black'), (1, 5): ('square', 'black'), (1, 6): ('triangle', 'black'), (1, 7): ('triangle', 'white'), (1, 8): ('square', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('square', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('circle', 'white'), (2, 6): ('circle', 'white'), (2, 7): ('triangle', 'black'), (2, 8): ('square', 'black'), (3, 0): ('square', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('triangle', 'white'), (3, 3): ('circle', 'black'), (3, 4): ('circle', 'black'), (3, 5): ('square', 'white'), (3, 6): ('triangle', 'black'), (3, 7): ('triangle', 'white'), (3, 8): ('triangle', 'white'), (4, 0): ('square', 'white'), (4, 1): ('square', 'black'), (4, 2): ('square', 'black'), (4, 3): ('square', 'white'), (4, 4): ('triangle', 'white'), (4, 5): ('circle', 'white'), (4, 6): ('square', 'white'), (4, 7): ('triangle', 'black'), (4, 8): ('square', 'black'), (5, 0): ('circle', 'white'), (5, 1): ('square', 'white'), (5, 2): ('triangle', 'white'), (5, 3): ('circle', 'white'), (5, 4): ('circle', 'white'), (5, 5): ('circle', 'black'), (5, 6): ('circle', 'black'), (5, 7): ('square', 'black'), (5, 8): ('triangle', 'white'), (6, 0): ('square', 'white'), (6, 1): ('circle', 'white'), (6, 2): ('circle', 'white'), (6, 3): ('triangle', 'white'), (6, 4): ('triangle', 'black'), (6, 5): ('square', 'white'), (6, 6): ('circle', 'black'), (6, 7): ('triangle', 'black'), (6, 8): ('square', 'black'), (7, 0): ('square', 'black'), (7, 1): ('circle', 'white'), (7, 2): ('circle', 'white'), (7, 3): ('triangle', 'white'), (7, 4): ('circle', 'white'), (7, 5): ('circle', 'black'), (7, 6): ('triangle', 'black'), (7, 7): ('square', 'white'), (7, 8): ('triangle', 'white'), (8, 0): ('circle', 'white'), (8, 1): ('square', 'white'), (8, 2): ('triangle', 'white'), (8, 3): ('square', 'black'), (8, 4): ('square', 'white'), (8, 5): ('triangle', 'black'), (8, 6): ('circle', 'black'), (8, 7): ('circle', 'black'), (8, 8): ('triangle', 'white')}]","(9, 9, 5)"
+262.svg,"[{(0, 0): ('circle', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('triangle', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('square', 'black'), (0, 5): ('square', 'black'), (0, 6): ('square', 'black'), (0, 7): ('triangle', 'black'), (0, 8): ('triangle', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('square', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('triangle', 'black'), (1, 6): ('square', 'white'), (1, 7): ('triangle', 'white'), (1, 8): ('circle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('triangle', 'black'), (2, 3): ('triangle', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('circle', 'white'), (2, 6): ('triangle', 'black'), (2, 7): ('square', 'white'), (2, 8): ('circle', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('circle', 'white'), (3, 3): ('triangle', 'white'), (3, 4): ('circle', 'black'), (3, 5): ('circle', 'white'), (3, 6): ('circle', 'black'), (3, 7): ('square', 'black'), (3, 8): ('square', 'black'), (4, 0): ('square', 'black'), (4, 1): ('circle', 'white'), (4, 2): ('circle', 'black'), (4, 3): ('triangle', 'white'), (4, 4): ('square', 'black'), (4, 5): ('square', 'black'), (4, 6): ('circle', 'black'), (4, 7): ('triangle', 'black'), (4, 8): ('square', 'black'), (5, 0): ('square', 'black'), (5, 1): ('triangle', 'black'), (5, 2): ('square', 'black'), (5, 3): ('square', 'black'), (5, 4): ('square', 'white'), (5, 5): ('triangle', 'white'), (5, 6): ('square', 'black'), (5, 7): ('square', 'white'), (5, 8): ('triangle', 'white'), (6, 0): ('triangle', 'white'), (6, 1): ('triangle', 'black'), (6, 2): ('triangle', 'black'), (6, 3): ('square', 'white'), (6, 4): ('circle', 'black'), (6, 5): ('triangle', 'white'), (6, 6): ('square', 'black'), (6, 7): ('triangle', 'black'), (6, 8): ('circle', 'black'), (7, 0): ('square', 'black'), (7, 1): ('triangle', 'white'), (7, 2): ('circle', 'black'), (7, 3): ('triangle', 'black'), (7, 4): ('square', 'white'), (7, 5): ('circle', 'black'), (7, 6): ('triangle', 'white'), (7, 7): ('circle', 'white'), (7, 8): ('triangle', 'white'), (8, 0): ('square', 'white'), (8, 1): ('circle', 'black'), (8, 2): ('circle', 'black'), (8, 3): ('circle', 'white'), (8, 4): ('triangle', 'black'), (8, 5): ('triangle', 'white'), (8, 6): ('circle', 'white'), (8, 7): ('circle', 'white'), (8, 8): ('square', 'white')}, {(0, 0): ('square', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('square', 'white'), (0, 3): ('square', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('triangle', 'white'), (0, 6): ('triangle', 'black'), (0, 7): ('square', 'white'), (0, 8): ('square', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'black'), (1, 3): ('square', 'black'), (1, 4): ('square', 'black'), (1, 5): ('circle', 'white'), (1, 6): ('triangle', 'black'), (1, 7): ('square', 'black'), (1, 8): ('triangle', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('circle', 'black'), (2, 4): ('triangle', 'white'), (2, 5): ('square', 'white'), (2, 6): ('square', 'black'), (2, 7): ('triangle', 'white'), (2, 8): ('triangle', 'white'), (3, 0): ('triangle', 'white'), (3, 1): ('triangle', 'white'), (3, 2): ('circle', 'black'), (3, 3): ('circle', 'black'), (3, 4): ('circle', 'black'), (3, 5): ('triangle', 'black'), (3, 6): ('circle', 'black'), (3, 7): ('square', 'white'), (3, 8): ('triangle', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('triangle', 'black'), (4, 2): ('triangle', 'white'), (4, 3): ('circle', 'black'), (4, 4): ('triangle', 'white'), (4, 5): ('square', 'white'), (4, 6): ('square', 'black'), (4, 7): ('square', 'white'), (4, 8): ('circle', 'black'), (5, 0): ('triangle', 'white'), (5, 1): ('triangle', 'white'), (5, 2): ('circle', 'black'), (5, 3): ('circle', 'white'), (5, 4): ('triangle', 'black'), (5, 5): ('circle', 'white'), (5, 6): ('circle', 'white'), (5, 7): ('circle', 'black'), (5, 8): ('circle', 'white'), (6, 0): ('triangle', 'white'), (6, 1): ('square', 'black'), (6, 2): ('circle', 'white'), (6, 3): ('triangle', 'black'), (6, 4): ('square', 'black'), (6, 5): ('circle', 'white'), (6, 6): ('square', 'black'), (6, 7): ('circle', 'white'), (6, 8): ('square', 'black'), (7, 0): ('circle', 'white'), (7, 1): ('circle', 'white'), (7, 2): ('square', 'white'), (7, 3): ('triangle', 'black'), (7, 4): ('square', 'white'), (7, 5): ('circle', 'black'), (7, 6): ('triangle', 'white'), (7, 7): ('square', 'black'), (7, 8): ('circle', 'white'), (8, 0): ('triangle', 'black'), (8, 1): ('triangle', 'black'), (8, 2): ('square', 'white'), (8, 3): ('square', 'black'), (8, 4): ('square', 'white'), (8, 5): ('circle', 'white'), (8, 6): ('circle', 'white'), (8, 7): ('triangle', 'black'), (8, 8): ('square', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('square', 'black'), (0, 2): ('triangle', 'black'), (0, 3): ('square', 'white'), (0, 4): ('square', 'black'), (0, 5): ('triangle', 'black'), (0, 6): ('square', 'white'), (0, 7): ('square', 'black'), (0, 8): ('circle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'black'), (1, 3): ('triangle', 'black'), (1, 4): ('square', 'white'), (1, 5): ('triangle', 'black'), (1, 6): ('square', 'black'), (1, 7): ('circle', 'black'), (1, 8): ('circle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('square', 'black'), (2, 3): ('square', 'black'), (2, 4): ('circle', 'black'), (2, 5): ('circle', 'white'), (2, 6): ('triangle', 'white'), (2, 7): ('square', 'black'), (2, 8): ('square', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('square', 'black'), (3, 2): ('square', 'black'), (3, 3): ('square', 'black'), (3, 4): ('square', 'black'), (3, 5): ('square', 'white'), (3, 6): ('square', 'white'), (3, 7): ('triangle', 'black'), (3, 8): ('triangle', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('triangle', 'white'), (4, 2): ('circle', 'white'), (4, 3): ('triangle', 'white'), (4, 4): ('square', 'black'), (4, 5): ('circle', 'black'), (4, 6): ('circle', 'black'), (4, 7): ('square', 'white'), (4, 8): ('triangle', 'black'), (5, 0): ('square', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('square', 'black'), (5, 3): ('square', 'white'), (5, 4): ('triangle', 'black'), (5, 5): ('square', 'white'), (5, 6): ('square', 'black'), (5, 7): ('circle', 'black'), (5, 8): ('circle', 'white'), (6, 0): ('square', 'white'), (6, 1): ('square', 'black'), (6, 2): ('circle', 'black'), (6, 3): ('square', 'white'), (6, 4): ('square', 'white'), (6, 5): ('triangle', 'black'), (6, 6): ('circle', 'black'), (6, 7): ('circle', 'black'), (6, 8): ('triangle', 'black'), (7, 0): ('square', 'white'), (7, 1): ('square', 'white'), (7, 2): ('square', 'white'), (7, 3): ('circle', 'white'), (7, 4): ('circle', 'black'), (7, 5): ('square', 'white'), (7, 6): ('square', 'white'), (7, 7): ('triangle', 'black'), (7, 8): ('triangle', 'black'), (8, 0): ('square', 'white'), (8, 1): ('circle', 'black'), (8, 2): ('circle', 'black'), (8, 3): ('triangle', 'white'), (8, 4): ('square', 'white'), (8, 5): ('square', 'black'), (8, 6): ('triangle', 'white'), (8, 7): ('circle', 'white'), (8, 8): ('circle', 'white')}, {(0, 0): ('square', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('square', 'white'), (0, 6): ('circle', 'white'), (0, 7): ('triangle', 'black'), (0, 8): ('triangle', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('square', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('square', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('triangle', 'white'), (1, 6): ('square', 'black'), (1, 7): ('square', 'black'), (1, 8): ('triangle', 'white'), (2, 0): ('square', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('circle', 'white'), (2, 3): ('circle', 'white'), (2, 4): ('circle', 'white'), (2, 5): ('square', 'black'), (2, 6): ('circle', 'white'), (2, 7): ('triangle', 'black'), (2, 8): ('circle', 'white'), (3, 0): ('square', 'black'), (3, 1): ('circle', 'white'), (3, 2): ('triangle', 'black'), (3, 3): ('square', 'white'), (3, 4): ('circle', 'black'), (3, 5): ('square', 'black'), (3, 6): ('circle', 'white'), (3, 7): ('triangle', 'white'), (3, 8): ('circle', 'black'), (4, 0): ('square', 'black'), (4, 1): ('square', 'white'), (4, 2): ('triangle', 'white'), (4, 3): ('square', 'white'), (4, 4): ('circle', 'white'), (4, 5): ('triangle', 'black'), (4, 6): ('triangle', 'black'), (4, 7): ('square', 'white'), (4, 8): ('circle', 'black'), (5, 0): ('circle', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('circle', 'white'), (5, 3): ('circle', 'black'), (5, 4): ('square', 'white'), (5, 5): ('triangle', 'white'), (5, 6): ('square', 'white'), (5, 7): ('triangle', 'white'), (5, 8): ('square', 'black'), (6, 0): ('triangle', 'white'), (6, 1): ('circle', 'black'), (6, 2): ('triangle', 'black'), (6, 3): ('triangle', 'black'), (6, 4): ('triangle', 'black'), (6, 5): ('square', 'black'), (6, 6): ('square', 'white'), (6, 7): ('square', 'black'), (6, 8): ('triangle', 'white'), (7, 0): ('square', 'white'), (7, 1): ('square', 'black'), (7, 2): ('triangle', 'black'), (7, 3): ('square', 'black'), (7, 4): ('square', 'white'), (7, 5): ('triangle', 'white'), (7, 6): ('triangle', 'white'), (7, 7): ('circle', 'black'), (7, 8): ('circle', 'white'), (8, 0): ('square', 'black'), (8, 1): ('triangle', 'white'), (8, 2): ('triangle', 'white'), (8, 3): ('triangle', 'white'), (8, 4): ('circle', 'white'), (8, 5): ('circle', 'black'), (8, 6): ('circle', 'black'), (8, 7): ('circle', 'white'), (8, 8): ('square', 'black')}, {(0, 0): ('circle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('square', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('circle', 'white'), (0, 6): ('triangle', 'black'), (0, 7): ('square', 'black'), (0, 8): ('triangle', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'black'), (1, 3): ('circle', 'white'), (1, 4): ('triangle', 'black'), (1, 5): ('triangle', 'black'), (1, 6): ('circle', 'black'), (1, 7): ('circle', 'white'), (1, 8): ('circle', 'black'), (2, 0): ('square', 'black'), (2, 1): ('square', 'white'), (2, 2): ('circle', 'white'), (2, 3): ('circle', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('circle', 'black'), (2, 6): ('triangle', 'white'), (2, 7): ('circle', 'black'), (2, 8): ('circle', 'white'), (3, 0): ('square', 'white'), (3, 1): ('square', 'white'), (3, 2): ('circle', 'white'), (3, 3): ('circle', 'white'), (3, 4): ('square', 'white'), (3, 5): ('circle', 'white'), (3, 6): ('square', 'black'), (3, 7): ('circle', 'white'), (3, 8): ('triangle', 'white'), (4, 0): ('square', 'white'), (4, 1): ('circle', 'black'), (4, 2): ('square', 'black'), (4, 3): ('square', 'black'), (4, 4): ('circle', 'white'), (4, 5): ('triangle', 'white'), (4, 6): ('square', 'white'), (4, 7): ('triangle', 'black'), (4, 8): ('square', 'white'), (5, 0): ('square', 'white'), (5, 1): ('square', 'white'), (5, 2): ('square', 'white'), (5, 3): ('triangle', 'white'), (5, 4): ('square', 'white'), (5, 5): ('circle', 'white'), (5, 6): ('circle', 'white'), (5, 7): ('triangle', 'white'), (5, 8): ('circle', 'white'), (6, 0): ('circle', 'black'), (6, 1): ('square', 'white'), (6, 2): ('triangle', 'white'), (6, 3): ('triangle', 'white'), (6, 4): ('square', 'black'), (6, 5): ('circle', 'black'), (6, 6): ('square', 'white'), (6, 7): ('circle', 'black'), (6, 8): ('square', 'white'), (7, 0): ('circle', 'black'), (7, 1): ('circle', 'black'), (7, 2): ('square', 'black'), (7, 3): ('square', 'white'), (7, 4): ('triangle', 'black'), (7, 5): ('square', 'white'), (7, 6): ('triangle', 'white'), (7, 7): ('circle', 'white'), (7, 8): ('circle', 'black'), (8, 0): ('triangle', 'black'), (8, 1): ('triangle', 'black'), (8, 2): ('circle', 'white'), (8, 3): ('square', 'black'), (8, 4): ('circle', 'white'), (8, 5): ('square', 'black'), (8, 6): ('circle', 'white'), (8, 7): ('triangle', 'black'), (8, 8): ('square', 'black')}]","(9, 9, 5)"
+263.svg,"[{(0, 0): ('circle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('circle', 'white'), (0, 4): ('triangle', 'white'), (0, 5): ('square', 'white'), (0, 6): ('square', 'black'), (0, 7): ('triangle', 'black'), (0, 8): ('triangle', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'black'), (1, 3): ('circle', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('circle', 'black'), (1, 6): ('circle', 'black'), (1, 7): ('square', 'white'), (1, 8): ('triangle', 'black'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('circle', 'white'), (2, 3): ('circle', 'black'), (2, 4): ('circle', 'black'), (2, 5): ('triangle', 'black'), (2, 6): ('circle', 'black'), (2, 7): ('square', 'black'), (2, 8): ('circle', 'black'), (3, 0): ('square', 'white'), (3, 1): ('circle', 'black'), (3, 2): ('square', 'white'), (3, 3): ('square', 'black'), (3, 4): ('circle', 'black'), (3, 5): ('square', 'white'), (3, 6): ('square', 'black'), (3, 7): ('circle', 'white'), (3, 8): ('square', 'white'), (4, 0): ('circle', 'white'), (4, 1): ('circle', 'black'), (4, 2): ('triangle', 'black'), (4, 3): ('triangle', 'white'), (4, 4): ('circle', 'black'), (4, 5): ('circle', 'black'), (4, 6): ('square', 'white'), (4, 7): ('triangle', 'black'), (4, 8): ('circle', 'white'), (5, 0): ('circle', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('circle', 'black'), (5, 3): ('circle', 'black'), (5, 4): ('triangle', 'white'), (5, 5): ('circle', 'white'), (5, 6): ('triangle', 'black'), (5, 7): ('circle', 'black'), (5, 8): ('circle', 'white'), (6, 0): ('square', 'white'), (6, 1): ('circle', 'black'), (6, 2): ('circle', 'black'), (6, 3): ('square', 'black'), (6, 4): ('circle', 'black'), (6, 5): ('circle', 'white'), (6, 6): ('circle', 'white'), (6, 7): ('square', 'black'), (6, 8): ('triangle', 'black'), (7, 0): ('triangle', 'white'), (7, 1): ('circle', 'white'), (7, 2): ('square', 'white'), (7, 3): ('triangle', 'black'), (7, 4): ('square', 'black'), (7, 5): ('circle', 'black'), (7, 6): ('square', 'black'), (7, 7): ('triangle', 'white'), (7, 8): ('square', 'white'), (8, 0): ('square', 'white'), (8, 1): ('square', 'white'), (8, 2): ('triangle', 'white'), (8, 3): ('square', 'white'), (8, 4): ('circle', 'white'), (8, 5): ('square', 'black'), (8, 6): ('square', 'white'), (8, 7): ('square', 'white'), (8, 8): ('square', 'white')}, {(0, 0): ('triangle', 'black'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('triangle', 'white'), (0, 4): ('square', 'black'), (0, 5): ('triangle', 'black'), (0, 6): ('triangle', 'black'), (0, 7): ('circle', 'white'), (0, 8): ('circle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('triangle', 'white'), (1, 5): ('square', 'white'), (1, 6): ('square', 'black'), (1, 7): ('triangle', 'black'), (1, 8): ('circle', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('triangle', 'black'), (2, 3): ('square', 'black'), (2, 4): ('square', 'white'), (2, 5): ('circle', 'white'), (2, 6): ('circle', 'white'), (2, 7): ('circle', 'black'), (2, 8): ('square', 'black'), (3, 0): ('triangle', 'white'), (3, 1): ('square', 'black'), (3, 2): ('circle', 'white'), (3, 3): ('circle', 'white'), (3, 4): ('triangle', 'black'), (3, 5): ('circle', 'black'), (3, 6): ('circle', 'black'), (3, 7): ('triangle', 'black'), (3, 8): ('triangle', 'black'), (4, 0): ('square', 'white'), (4, 1): ('square', 'white'), (4, 2): ('triangle', 'black'), (4, 3): ('square', 'white'), (4, 4): ('circle', 'white'), (4, 5): ('circle', 'white'), (4, 6): ('triangle', 'black'), (4, 7): ('triangle', 'white'), (4, 8): ('circle', 'white'), (5, 0): ('circle', 'white'), (5, 1): ('square', 'black'), (5, 2): ('triangle', 'black'), (5, 3): ('circle', 'white'), (5, 4): ('square', 'white'), (5, 5): ('square', 'black'), (5, 6): ('circle', 'black'), (5, 7): ('square', 'white'), (5, 8): ('square', 'black'), (6, 0): ('triangle', 'white'), (6, 1): ('circle', 'black'), (6, 2): ('triangle', 'black'), (6, 3): ('square', 'black'), (6, 4): ('triangle', 'black'), (6, 5): ('triangle', 'black'), (6, 6): ('circle', 'black'), (6, 7): ('triangle', 'black'), (6, 8): ('square', 'white'), (7, 0): ('circle', 'white'), (7, 1): ('circle', 'white'), (7, 2): ('triangle', 'black'), (7, 3): ('triangle', 'black'), (7, 4): ('circle', 'black'), (7, 5): ('triangle', 'black'), (7, 6): ('circle', 'white'), (7, 7): ('circle', 'white'), (7, 8): ('circle', 'black'), (8, 0): ('square', 'black'), (8, 1): ('square', 'black'), (8, 2): ('circle', 'white'), (8, 3): ('triangle', 'white'), (8, 4): ('triangle', 'black'), (8, 5): ('triangle', 'white'), (8, 6): ('circle', 'black'), (8, 7): ('square', 'white'), (8, 8): ('triangle', 'black')}, {(0, 0): ('triangle', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('square', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('square', 'black'), (0, 6): ('square', 'black'), (0, 7): ('square', 'black'), (0, 8): ('circle', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('circle', 'black'), (1, 5): ('square', 'white'), (1, 6): ('square', 'white'), (1, 7): ('square', 'white'), (1, 8): ('circle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('triangle', 'black'), (2, 4): ('triangle', 'white'), (2, 5): ('circle', 'white'), (2, 6): ('circle', 'black'), (2, 7): ('triangle', 'white'), (2, 8): ('triangle', 'white'), (3, 0): ('triangle', 'white'), (3, 1): ('circle', 'white'), (3, 2): ('circle', 'white'), (3, 3): ('circle', 'white'), (3, 4): ('triangle', 'black'), (3, 5): ('circle', 'black'), (3, 6): ('square', 'white'), (3, 7): ('circle', 'black'), (3, 8): ('triangle', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('square', 'white'), (4, 2): ('circle', 'white'), (4, 3): ('circle', 'black'), (4, 4): ('triangle', 'black'), (4, 5): ('square', 'black'), (4, 6): ('triangle', 'black'), (4, 7): ('circle', 'white'), (4, 8): ('square', 'black'), (5, 0): ('circle', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('square', 'black'), (5, 3): ('square', 'white'), (5, 4): ('square', 'white'), (5, 5): ('circle', 'black'), (5, 6): ('square', 'white'), (5, 7): ('square', 'white'), (5, 8): ('square', 'white'), (6, 0): ('square', 'black'), (6, 1): ('triangle', 'white'), (6, 2): ('triangle', 'black'), (6, 3): ('triangle', 'black'), (6, 4): ('triangle', 'black'), (6, 5): ('triangle', 'black'), (6, 6): ('triangle', 'black'), (6, 7): ('square', 'black'), (6, 8): ('circle', 'black'), (7, 0): ('square', 'black'), (7, 1): ('circle', 'black'), (7, 2): ('triangle', 'white'), (7, 3): ('triangle', 'black'), (7, 4): ('circle', 'black'), (7, 5): ('circle', 'black'), (7, 6): ('triangle', 'white'), (7, 7): ('circle', 'white'), (7, 8): ('square', 'white'), (8, 0): ('circle', 'white'), (8, 1): ('triangle', 'white'), (8, 2): ('circle', 'white'), (8, 3): ('square', 'white'), (8, 4): ('triangle', 'white'), (8, 5): ('triangle', 'black'), (8, 6): ('triangle', 'black'), (8, 7): ('triangle', 'black'), (8, 8): ('circle', 'black')}, {(0, 0): ('circle', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('circle', 'white'), (0, 3): ('square', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('square', 'black'), (0, 6): ('circle', 'black'), (0, 7): ('circle', 'black'), (0, 8): ('circle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('triangle', 'black'), (1, 3): ('triangle', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('circle', 'black'), (1, 6): ('square', 'white'), (1, 7): ('circle', 'black'), (1, 8): ('square', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('square', 'white'), (2, 4): ('triangle', 'white'), (2, 5): ('triangle', 'white'), (2, 6): ('circle', 'black'), (2, 7): ('triangle', 'black'), (2, 8): ('triangle', 'black'), (3, 0): ('square', 'white'), (3, 1): ('triangle', 'white'), (3, 2): ('square', 'black'), (3, 3): ('triangle', 'black'), (3, 4): ('square', 'black'), (3, 5): ('square', 'white'), (3, 6): ('triangle', 'black'), (3, 7): ('triangle', 'white'), (3, 8): ('triangle', 'white'), (4, 0): ('circle', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('triangle', 'white'), (4, 3): ('square', 'white'), (4, 4): ('triangle', 'white'), (4, 5): ('circle', 'black'), (4, 6): ('triangle', 'white'), (4, 7): ('square', 'black'), (4, 8): ('circle', 'white'), (5, 0): ('circle', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('square', 'white'), (5, 3): ('circle', 'black'), (5, 4): ('circle', 'black'), (5, 5): ('triangle', 'black'), (5, 6): ('circle', 'white'), (5, 7): ('triangle', 'black'), (5, 8): ('circle', 'white'), (6, 0): ('square', 'white'), (6, 1): ('triangle', 'white'), (6, 2): ('circle', 'black'), (6, 3): ('square', 'black'), (6, 4): ('triangle', 'white'), (6, 5): ('square', 'white'), (6, 6): ('circle', 'black'), (6, 7): ('triangle', 'white'), (6, 8): ('square', 'black'), (7, 0): ('triangle', 'white'), (7, 1): ('square', 'white'), (7, 2): ('circle', 'black'), (7, 3): ('circle', 'white'), (7, 4): ('triangle', 'black'), (7, 5): ('circle', 'black'), (7, 6): ('circle', 'black'), (7, 7): ('circle', 'black'), (7, 8): ('circle', 'white'), (8, 0): ('square', 'white'), (8, 1): ('triangle', 'white'), (8, 2): ('triangle', 'black'), (8, 3): ('square', 'white'), (8, 4): ('square', 'white'), (8, 5): ('circle', 'black'), (8, 6): ('square', 'black'), (8, 7): ('triangle', 'black'), (8, 8): ('circle', 'black')}, {(0, 0): ('square', 'black'), (0, 1): ('circle', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('triangle', 'white'), (0, 6): ('square', 'white'), (0, 7): ('square', 'black'), (0, 8): ('triangle', 'white'), (1, 0): ('triangle', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'black'), (1, 3): ('triangle', 'white'), (1, 4): ('triangle', 'black'), (1, 5): ('square', 'white'), (1, 6): ('square', 'black'), (1, 7): ('triangle', 'black'), (1, 8): ('circle', 'black'), (2, 0): ('square', 'white'), (2, 1): ('triangle', 'white'), (2, 2): ('square', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('circle', 'black'), (2, 5): ('circle', 'white'), (2, 6): ('circle', 'white'), (2, 7): ('square', 'black'), (2, 8): ('circle', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('circle', 'black'), (3, 3): ('triangle', 'white'), (3, 4): ('circle', 'black'), (3, 5): ('triangle', 'black'), (3, 6): ('triangle', 'black'), (3, 7): ('triangle', 'white'), (3, 8): ('square', 'white'), (4, 0): ('triangle', 'white'), (4, 1): ('circle', 'black'), (4, 2): ('circle', 'white'), (4, 3): ('circle', 'black'), (4, 4): ('triangle', 'black'), (4, 5): ('triangle', 'white'), (4, 6): ('triangle', 'black'), (4, 7): ('circle', 'white'), (4, 8): ('circle', 'black'), (5, 0): ('square', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('triangle', 'white'), (5, 3): ('circle', 'white'), (5, 4): ('circle', 'black'), (5, 5): ('triangle', 'white'), (5, 6): ('circle', 'white'), (5, 7): ('triangle', 'white'), (5, 8): ('triangle', 'black'), (6, 0): ('circle', 'black'), (6, 1): ('circle', 'black'), (6, 2): ('triangle', 'black'), (6, 3): ('square', 'white'), (6, 4): ('triangle', 'white'), (6, 5): ('triangle', 'white'), (6, 6): ('square', 'white'), (6, 7): ('circle', 'white'), (6, 8): ('circle', 'white'), (7, 0): ('square', 'white'), (7, 1): ('triangle', 'black'), (7, 2): ('square', 'black'), (7, 3): ('square', 'black'), (7, 4): ('triangle', 'white'), (7, 5): ('square', 'black'), (7, 6): ('circle', 'black'), (7, 7): ('square', 'black'), (7, 8): ('square', 'white'), (8, 0): ('circle', 'black'), (8, 1): ('circle', 'black'), (8, 2): ('circle', 'black'), (8, 3): ('circle', 'black'), (8, 4): ('square', 'white'), (8, 5): ('triangle', 'black'), (8, 6): ('square', 'white'), (8, 7): ('circle', 'black'), (8, 8): ('square', 'white')}]","(9, 9, 5)"
+264.svg,"[{(0, 0): ('circle', 'black'), (0, 1): ('square', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('triangle', 'white'), (0, 4): ('triangle', 'black'), (0, 5): ('triangle', 'white'), (0, 6): ('square', 'black'), (0, 7): ('circle', 'black'), (0, 8): ('square', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('triangle', 'black'), (1, 5): ('circle', 'black'), (1, 6): ('square', 'white'), (1, 7): ('triangle', 'white'), (1, 8): ('circle', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('circle', 'white'), (2, 3): ('triangle', 'white'), (2, 4): ('triangle', 'black'), (2, 5): ('triangle', 'black'), (2, 6): ('square', 'black'), (2, 7): ('circle', 'black'), (2, 8): ('square', 'black'), (3, 0): ('square', 'white'), (3, 1): ('circle', 'white'), (3, 2): ('circle', 'black'), (3, 3): ('circle', 'black'), (3, 4): ('triangle', 'black'), (3, 5): ('triangle', 'black'), (3, 6): ('triangle', 'white'), (3, 7): ('square', 'black'), (3, 8): ('triangle', 'black'), (4, 0): ('circle', 'black'), (4, 1): ('triangle', 'white'), (4, 2): ('circle', 'white'), (4, 3): ('triangle', 'black'), (4, 4): ('square', 'black'), (4, 5): ('triangle', 'white'), (4, 6): ('circle', 'white'), (4, 7): ('circle', 'black'), (4, 8): ('circle', 'black'), (5, 0): ('square', 'white'), (5, 1): ('square', 'black'), (5, 2): ('circle', 'black'), (5, 3): ('circle', 'black'), (5, 4): ('circle', 'black'), (5, 5): ('circle', 'black'), (5, 6): ('triangle', 'white'), (5, 7): ('circle', 'white'), (5, 8): ('square', 'white'), (6, 0): ('circle', 'white'), (6, 1): ('triangle', 'white'), (6, 2): ('circle', 'white'), (6, 3): ('circle', 'white'), (6, 4): ('triangle', 'black'), (6, 5): ('circle', 'black'), (6, 6): ('circle', 'white'), (6, 7): ('circle', 'black'), (6, 8): ('triangle', 'black'), (7, 0): ('triangle', 'white'), (7, 1): ('square', 'white'), (7, 2): ('triangle', 'white'), (7, 3): ('square', 'white'), (7, 4): ('square', 'white'), (7, 5): ('square', 'black'), (7, 6): ('square', 'black'), (7, 7): ('circle', 'white'), (7, 8): ('triangle', 'white'), (8, 0): ('circle', 'black'), (8, 1): ('triangle', 'white'), (8, 2): ('square', 'black'), (8, 3): ('square', 'white'), (8, 4): ('triangle', 'white'), (8, 5): ('square', 'white'), (8, 6): ('circle', 'black'), (8, 7): ('circle', 'white'), (8, 8): ('square', 'black')}, {(0, 0): ('square', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('circle', 'white'), (0, 6): ('circle', 'black'), (0, 7): ('triangle', 'black'), (0, 8): ('circle', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('square', 'white'), (1, 6): ('triangle', 'black'), (1, 7): ('square', 'black'), (1, 8): ('circle', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('square', 'black'), (2, 2): ('triangle', 'black'), (2, 3): ('circle', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('circle', 'white'), (2, 6): ('circle', 'white'), (2, 7): ('square', 'black'), (2, 8): ('triangle', 'white'), (3, 0): ('square', 'white'), (3, 1): ('triangle', 'black'), (3, 2): ('circle', 'black'), (3, 3): ('square', 'black'), (3, 4): ('triangle', 'white'), (3, 5): ('square', 'black'), (3, 6): ('square', 'black'), (3, 7): ('triangle', 'white'), (3, 8): ('circle', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('triangle', 'white'), (4, 2): ('square', 'white'), (4, 3): ('square', 'white'), (4, 4): ('square', 'black'), (4, 5): ('circle', 'black'), (4, 6): ('square', 'white'), (4, 7): ('circle', 'black'), (4, 8): ('circle', 'white'), (5, 0): ('circle', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('triangle', 'black'), (5, 3): ('square', 'white'), (5, 4): ('circle', 'black'), (5, 5): ('circle', 'white'), (5, 6): ('square', 'white'), (5, 7): ('circle', 'white'), (5, 8): ('square', 'black'), (6, 0): ('circle', 'white'), (6, 1): ('circle', 'white'), (6, 2): ('triangle', 'white'), (6, 3): ('square', 'black'), (6, 4): ('triangle', 'black'), (6, 5): ('circle', 'white'), (6, 6): ('triangle', 'white'), (6, 7): ('triangle', 'white'), (6, 8): ('triangle', 'white'), (7, 0): ('circle', 'white'), (7, 1): ('square', 'black'), (7, 2): ('circle', 'white'), (7, 3): ('square', 'black'), (7, 4): ('circle', 'black'), (7, 5): ('square', 'white'), (7, 6): ('triangle', 'white'), (7, 7): ('square', 'white'), (7, 8): ('square', 'white'), (8, 0): ('square', 'black'), (8, 1): ('circle', 'black'), (8, 2): ('circle', 'black'), (8, 3): ('square', 'white'), (8, 4): ('circle', 'white'), (8, 5): ('circle', 'black'), (8, 6): ('triangle', 'black'), (8, 7): ('circle', 'black'), (8, 8): ('triangle', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('circle', 'white'), (0, 3): ('triangle', 'white'), (0, 4): ('triangle', 'black'), (0, 5): ('triangle', 'black'), (0, 6): ('circle', 'black'), (0, 7): ('square', 'white'), (0, 8): ('circle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('square', 'black'), (1, 2): ('square', 'black'), (1, 3): ('triangle', 'white'), (1, 4): ('square', 'black'), (1, 5): ('square', 'white'), (1, 6): ('triangle', 'black'), (1, 7): ('circle', 'white'), (1, 8): ('triangle', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'white'), (2, 3): ('square', 'white'), (2, 4): ('circle', 'white'), (2, 5): ('circle', 'white'), (2, 6): ('circle', 'black'), (2, 7): ('triangle', 'black'), (2, 8): ('square', 'white'), (3, 0): ('circle', 'white'), (3, 1): ('triangle', 'white'), (3, 2): ('triangle', 'black'), (3, 3): ('square', 'black'), (3, 4): ('circle', 'white'), (3, 5): ('square', 'white'), (3, 6): ('square', 'white'), (3, 7): ('square', 'black'), (3, 8): ('circle', 'white'), (4, 0): ('square', 'black'), (4, 1): ('square', 'black'), (4, 2): ('square', 'white'), (4, 3): ('circle', 'white'), (4, 4): ('triangle', 'black'), (4, 5): ('circle', 'black'), (4, 6): ('square', 'black'), (4, 7): ('circle', 'white'), (4, 8): ('triangle', 'black'), (5, 0): ('triangle', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('triangle', 'black'), (5, 3): ('triangle', 'white'), (5, 4): ('square', 'white'), (5, 5): ('triangle', 'white'), (5, 6): ('square', 'black'), (5, 7): ('circle', 'white'), (5, 8): ('triangle', 'black'), (6, 0): ('circle', 'black'), (6, 1): ('circle', 'black'), (6, 2): ('square', 'white'), (6, 3): ('triangle', 'white'), (6, 4): ('circle', 'white'), (6, 5): ('circle', 'white'), (6, 6): ('triangle', 'black'), (6, 7): ('square', 'white'), (6, 8): ('circle', 'black'), (7, 0): ('square', 'black'), (7, 1): ('circle', 'black'), (7, 2): ('square', 'white'), (7, 3): ('circle', 'white'), (7, 4): ('triangle', 'white'), (7, 5): ('triangle', 'white'), (7, 6): ('triangle', 'black'), (7, 7): ('circle', 'black'), (7, 8): ('circle', 'white'), (8, 0): ('square', 'white'), (8, 1): ('circle', 'black'), (8, 2): ('triangle', 'black'), (8, 3): ('square', 'white'), (8, 4): ('triangle', 'white'), (8, 5): ('circle', 'black'), (8, 6): ('triangle', 'white'), (8, 7): ('square', 'white'), (8, 8): ('circle', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('circle', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('square', 'white'), (0, 6): ('circle', 'white'), (0, 7): ('square', 'black'), (0, 8): ('circle', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('square', 'white'), (1, 2): ('square', 'white'), (1, 3): ('triangle', 'white'), (1, 4): ('triangle', 'black'), (1, 5): ('square', 'black'), (1, 6): ('circle', 'black'), (1, 7): ('square', 'white'), (1, 8): ('square', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('square', 'white'), (2, 2): ('square', 'white'), (2, 3): ('square', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('circle', 'black'), (2, 6): ('circle', 'white'), (2, 7): ('circle', 'white'), (2, 8): ('square', 'white'), (3, 0): ('circle', 'black'), (3, 1): ('triangle', 'black'), (3, 2): ('square', 'white'), (3, 3): ('circle', 'white'), (3, 4): ('square', 'white'), (3, 5): ('triangle', 'white'), (3, 6): ('triangle', 'white'), (3, 7): ('circle', 'white'), (3, 8): ('circle', 'black'), (4, 0): ('square', 'black'), (4, 1): ('square', 'black'), (4, 2): ('triangle', 'white'), (4, 3): ('triangle', 'black'), (4, 4): ('triangle', 'black'), (4, 5): ('circle', 'white'), (4, 6): ('triangle', 'black'), (4, 7): ('triangle', 'black'), (4, 8): ('triangle', 'black'), (5, 0): ('square', 'white'), (5, 1): ('square', 'black'), (5, 2): ('square', 'white'), (5, 3): ('square', 'white'), (5, 4): ('square', 'black'), (5, 5): ('square', 'white'), (5, 6): ('circle', 'white'), (5, 7): ('circle', 'black'), (5, 8): ('triangle', 'black'), (6, 0): ('circle', 'white'), (6, 1): ('triangle', 'black'), (6, 2): ('triangle', 'black'), (6, 3): ('triangle', 'black'), (6, 4): ('triangle', 'white'), (6, 5): ('square', 'black'), (6, 6): ('square', 'white'), (6, 7): ('triangle', 'black'), (6, 8): ('triangle', 'black'), (7, 0): ('circle', 'white'), (7, 1): ('triangle', 'black'), (7, 2): ('circle', 'white'), (7, 3): ('square', 'white'), (7, 4): ('square', 'white'), (7, 5): ('square', 'black'), (7, 6): ('circle', 'white'), (7, 7): ('circle', 'black'), (7, 8): ('triangle', 'white'), (8, 0): ('square', 'black'), (8, 1): ('circle', 'black'), (8, 2): ('circle', 'black'), (8, 3): ('triangle', 'black'), (8, 4): ('triangle', 'black'), (8, 5): ('triangle', 'black'), (8, 6): ('circle', 'white'), (8, 7): ('triangle', 'white'), (8, 8): ('square', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('triangle', 'black'), (0, 5): ('circle', 'white'), (0, 6): ('circle', 'white'), (0, 7): ('square', 'black'), (0, 8): ('circle', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('triangle', 'black'), (1, 2): ('triangle', 'black'), (1, 3): ('circle', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('square', 'black'), (1, 6): ('triangle', 'white'), (1, 7): ('circle', 'white'), (1, 8): ('square', 'white'), (2, 0): ('square', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('triangle', 'white'), (2, 3): ('circle', 'white'), (2, 4): ('square', 'black'), (2, 5): ('circle', 'black'), (2, 6): ('square', 'white'), (2, 7): ('square', 'white'), (2, 8): ('square', 'white'), (3, 0): ('circle', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('square', 'white'), (3, 3): ('triangle', 'white'), (3, 4): ('square', 'white'), (3, 5): ('triangle', 'black'), (3, 6): ('circle', 'black'), (3, 7): ('circle', 'black'), (3, 8): ('circle', 'black'), (4, 0): ('circle', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('triangle', 'black'), (4, 3): ('circle', 'black'), (4, 4): ('square', 'black'), (4, 5): ('triangle', 'white'), (4, 6): ('triangle', 'black'), (4, 7): ('triangle', 'black'), (4, 8): ('square', 'white'), (5, 0): ('square', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('triangle', 'white'), (5, 3): ('triangle', 'white'), (5, 4): ('square', 'black'), (5, 5): ('square', 'white'), (5, 6): ('square', 'black'), (5, 7): ('circle', 'white'), (5, 8): ('square', 'white'), (6, 0): ('circle', 'black'), (6, 1): ('triangle', 'black'), (6, 2): ('circle', 'black'), (6, 3): ('square', 'white'), (6, 4): ('triangle', 'black'), (6, 5): ('triangle', 'white'), (6, 6): ('triangle', 'white'), (6, 7): ('square', 'white'), (6, 8): ('triangle', 'black'), (7, 0): ('square', 'white'), (7, 1): ('circle', 'black'), (7, 2): ('square', 'white'), (7, 3): ('circle', 'white'), (7, 4): ('triangle', 'white'), (7, 5): ('circle', 'black'), (7, 6): ('triangle', 'black'), (7, 7): ('circle', 'white'), (7, 8): ('square', 'white'), (8, 0): ('square', 'white'), (8, 1): ('triangle', 'black'), (8, 2): ('square', 'white'), (8, 3): ('circle', 'white'), (8, 4): ('circle', 'white'), (8, 5): ('triangle', 'white'), (8, 6): ('triangle', 'black'), (8, 7): ('circle', 'black'), (8, 8): ('circle', 'black')}]","(9, 9, 5)"
+265.svg,"[{(0, 0): ('circle', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('square', 'white'), (0, 3): ('square', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('square', 'white'), (0, 6): ('circle', 'black'), (0, 7): ('square', 'black'), (0, 8): ('triangle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('square', 'white'), (1, 6): ('square', 'black'), (1, 7): ('square', 'black'), (1, 8): ('triangle', 'black'), (2, 0): ('square', 'white'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('square', 'black'), (2, 4): ('triangle', 'white'), (2, 5): ('square', 'black'), (2, 6): ('circle', 'white'), (2, 7): ('square', 'black'), (2, 8): ('square', 'white'), (3, 0): ('circle', 'black'), (3, 1): ('square', 'black'), (3, 2): ('circle', 'black'), (3, 3): ('square', 'black'), (3, 4): ('square', 'white'), (3, 5): ('square', 'white'), (3, 6): ('triangle', 'black'), (3, 7): ('triangle', 'white'), (3, 8): ('circle', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('square', 'black'), (4, 2): ('triangle', 'black'), (4, 3): ('triangle', 'white'), (4, 4): ('triangle', 'black'), (4, 5): ('triangle', 'black'), (4, 6): ('circle', 'white'), (4, 7): ('square', 'white'), (4, 8): ('square', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('square', 'white'), (5, 3): ('triangle', 'white'), (5, 4): ('triangle', 'white'), (5, 5): ('circle', 'black'), (5, 6): ('square', 'black'), (5, 7): ('square', 'white'), (5, 8): ('circle', 'white'), (6, 0): ('circle', 'white'), (6, 1): ('triangle', 'white'), (6, 2): ('square', 'white'), (6, 3): ('square', 'white'), (6, 4): ('triangle', 'black'), (6, 5): ('circle', 'black'), (6, 6): ('triangle', 'black'), (6, 7): ('square', 'white'), (6, 8): ('triangle', 'white'), (7, 0): ('square', 'black'), (7, 1): ('circle', 'white'), (7, 2): ('square', 'white'), (7, 3): ('square', 'white'), (7, 4): ('circle', 'white'), (7, 5): ('square', 'white'), (7, 6): ('square', 'white'), (7, 7): ('circle', 'white'), (7, 8): ('triangle', 'black'), (8, 0): ('circle', 'black'), (8, 1): ('circle', 'white'), (8, 2): ('triangle', 'black'), (8, 3): ('square', 'white'), (8, 4): ('triangle', 'white'), (8, 5): ('square', 'black'), (8, 6): ('triangle', 'white'), (8, 7): ('triangle', 'black'), (8, 8): ('square', 'black')}, {(0, 0): ('circle', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'black'), (0, 3): ('square', 'white'), (0, 4): ('circle', 'black'), (0, 5): ('triangle', 'black'), (0, 6): ('triangle', 'black'), (0, 7): ('circle', 'white'), (0, 8): ('square', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('square', 'black'), (1, 2): ('triangle', 'black'), (1, 3): ('circle', 'white'), (1, 4): ('square', 'white'), (1, 5): ('circle', 'white'), (1, 6): ('circle', 'black'), (1, 7): ('triangle', 'black'), (1, 8): ('square', 'black'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('triangle', 'white'), (2, 4): ('circle', 'black'), (2, 5): ('circle', 'black'), (2, 6): ('triangle', 'white'), (2, 7): ('circle', 'white'), (2, 8): ('triangle', 'white'), (3, 0): ('square', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('square', 'white'), (3, 3): ('triangle', 'white'), (3, 4): ('square', 'white'), (3, 5): ('square', 'black'), (3, 6): ('triangle', 'black'), (3, 7): ('triangle', 'white'), (3, 8): ('square', 'white'), (4, 0): ('circle', 'white'), (4, 1): ('circle', 'black'), (4, 2): ('square', 'white'), (4, 3): ('triangle', 'white'), (4, 4): ('triangle', 'black'), (4, 5): ('triangle', 'black'), (4, 6): ('triangle', 'white'), (4, 7): ('triangle', 'black'), (4, 8): ('square', 'black'), (5, 0): ('triangle', 'white'), (5, 1): ('square', 'black'), (5, 2): ('circle', 'white'), (5, 3): ('square', 'white'), (5, 4): ('square', 'white'), (5, 5): ('triangle', 'white'), (5, 6): ('square', 'black'), (5, 7): ('circle', 'black'), (5, 8): ('circle', 'white'), (6, 0): ('square', 'black'), (6, 1): ('triangle', 'white'), (6, 2): ('square', 'black'), (6, 3): ('circle', 'white'), (6, 4): ('square', 'white'), (6, 5): ('circle', 'black'), (6, 6): ('square', 'white'), (6, 7): ('square', 'black'), (6, 8): ('circle', 'white'), (7, 0): ('triangle', 'black'), (7, 1): ('circle', 'black'), (7, 2): ('square', 'black'), (7, 3): ('triangle', 'black'), (7, 4): ('square', 'black'), (7, 5): ('square', 'white'), (7, 6): ('triangle', 'white'), (7, 7): ('square', 'white'), (7, 8): ('square', 'black'), (8, 0): ('circle', 'white'), (8, 1): ('triangle', 'white'), (8, 2): ('circle', 'black'), (8, 3): ('circle', 'white'), (8, 4): ('square', 'black'), (8, 5): ('circle', 'white'), (8, 6): ('square', 'white'), (8, 7): ('square', 'white'), (8, 8): ('square', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('square', 'black'), (0, 2): ('square', 'black'), (0, 3): ('triangle', 'white'), (0, 4): ('triangle', 'black'), (0, 5): ('circle', 'white'), (0, 6): ('square', 'black'), (0, 7): ('circle', 'white'), (0, 8): ('triangle', 'black'), (1, 0): ('triangle', 'white'), (1, 1): ('triangle', 'white'), (1, 2): ('square', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('square', 'black'), (1, 5): ('circle', 'white'), (1, 6): ('triangle', 'white'), (1, 7): ('square', 'white'), (1, 8): ('square', 'white'), (2, 0): ('square', 'white'), (2, 1): ('square', 'black'), (2, 2): ('square', 'black'), (2, 3): ('square', 'white'), (2, 4): ('circle', 'black'), (2, 5): ('circle', 'black'), (2, 6): ('triangle', 'black'), (2, 7): ('circle', 'white'), (2, 8): ('square', 'white'), (3, 0): ('circle', 'black'), (3, 1): ('square', 'black'), (3, 2): ('triangle', 'black'), (3, 3): ('circle', 'white'), (3, 4): ('circle', 'black'), (3, 5): ('square', 'white'), (3, 6): ('triangle', 'white'), (3, 7): ('square', 'white'), (3, 8): ('square', 'white'), (4, 0): ('square', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('square', 'black'), (4, 3): ('square', 'black'), (4, 4): ('circle', 'white'), (4, 5): ('square', 'black'), (4, 6): ('square', 'black'), (4, 7): ('triangle', 'white'), (4, 8): ('circle', 'white'), (5, 0): ('square', 'white'), (5, 1): ('square', 'black'), (5, 2): ('circle', 'white'), (5, 3): ('square', 'black'), (5, 4): ('square', 'black'), (5, 5): ('square', 'white'), (5, 6): ('square', 'white'), (5, 7): ('circle', 'white'), (5, 8): ('square', 'white'), (6, 0): ('triangle', 'white'), (6, 1): ('square', 'black'), (6, 2): ('square', 'white'), (6, 3): ('square', 'black'), (6, 4): ('circle', 'white'), (6, 5): ('triangle', 'white'), (6, 6): ('triangle', 'white'), (6, 7): ('circle', 'white'), (6, 8): ('triangle', 'black'), (7, 0): ('circle', 'white'), (7, 1): ('circle', 'black'), (7, 2): ('circle', 'white'), (7, 3): ('triangle', 'white'), (7, 4): ('circle', 'white'), (7, 5): ('square', 'white'), (7, 6): ('triangle', 'white'), (7, 7): ('circle', 'black'), (7, 8): ('square', 'black'), (8, 0): ('triangle', 'black'), (8, 1): ('square', 'white'), (8, 2): ('triangle', 'black'), (8, 3): ('circle', 'white'), (8, 4): ('square', 'white'), (8, 5): ('triangle', 'white'), (8, 6): ('triangle', 'black'), (8, 7): ('circle', 'black'), (8, 8): ('square', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('square', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('circle', 'white'), (0, 6): ('square', 'black'), (0, 7): ('triangle', 'black'), (0, 8): ('triangle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('square', 'white'), (1, 3): ('square', 'black'), (1, 4): ('triangle', 'white'), (1, 5): ('triangle', 'white'), (1, 6): ('circle', 'black'), (1, 7): ('square', 'black'), (1, 8): ('triangle', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('circle', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('triangle', 'white'), (2, 5): ('square', 'black'), (2, 6): ('circle', 'black'), (2, 7): ('square', 'white'), (2, 8): ('square', 'black'), (3, 0): ('triangle', 'black'), (3, 1): ('square', 'black'), (3, 2): ('triangle', 'white'), (3, 3): ('circle', 'black'), (3, 4): ('circle', 'black'), (3, 5): ('circle', 'white'), (3, 6): ('square', 'white'), (3, 7): ('circle', 'black'), (3, 8): ('square', 'black'), (4, 0): ('square', 'white'), (4, 1): ('square', 'white'), (4, 2): ('square', 'white'), (4, 3): ('square', 'white'), (4, 4): ('square', 'white'), (4, 5): ('triangle', 'black'), (4, 6): ('circle', 'black'), (4, 7): ('triangle', 'black'), (4, 8): ('circle', 'black'), (5, 0): ('circle', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('square', 'white'), (5, 3): ('square', 'white'), (5, 4): ('triangle', 'white'), (5, 5): ('square', 'white'), (5, 6): ('triangle', 'black'), (5, 7): ('triangle', 'white'), (5, 8): ('triangle', 'white'), (6, 0): ('triangle', 'white'), (6, 1): ('triangle', 'black'), (6, 2): ('triangle', 'black'), (6, 3): ('square', 'white'), (6, 4): ('triangle', 'white'), (6, 5): ('circle', 'white'), (6, 6): ('triangle', 'white'), (6, 7): ('square', 'black'), (6, 8): ('square', 'black'), (7, 0): ('circle', 'white'), (7, 1): ('square', 'white'), (7, 2): ('circle', 'black'), (7, 3): ('square', 'white'), (7, 4): ('circle', 'white'), (7, 5): ('circle', 'white'), (7, 6): ('square', 'white'), (7, 7): ('circle', 'white'), (7, 8): ('circle', 'white'), (8, 0): ('circle', 'black'), (8, 1): ('circle', 'black'), (8, 2): ('square', 'white'), (8, 3): ('square', 'white'), (8, 4): ('triangle', 'black'), (8, 5): ('circle', 'white'), (8, 6): ('triangle', 'white'), (8, 7): ('circle', 'black'), (8, 8): ('triangle', 'white')}, {(0, 0): ('triangle', 'white'), (0, 1): ('triangle', 'white'), (0, 2): ('square', 'white'), (0, 3): ('triangle', 'black'), (0, 4): ('triangle', 'white'), (0, 5): ('square', 'white'), (0, 6): ('circle', 'black'), (0, 7): ('square', 'black'), (0, 8): ('circle', 'white'), (1, 0): ('square', 'white'), (1, 1): ('square', 'white'), (1, 2): ('triangle', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('triangle', 'black'), (1, 5): ('square', 'white'), (1, 6): ('square', 'white'), (1, 7): ('triangle', 'white'), (1, 8): ('circle', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('triangle', 'black'), (2, 2): ('triangle', 'black'), (2, 3): ('circle', 'black'), (2, 4): ('square', 'white'), (2, 5): ('square', 'black'), (2, 6): ('square', 'black'), (2, 7): ('circle', 'black'), (2, 8): ('square', 'white'), (3, 0): ('square', 'white'), (3, 1): ('circle', 'white'), (3, 2): ('circle', 'white'), (3, 3): ('circle', 'black'), (3, 4): ('square', 'black'), (3, 5): ('triangle', 'white'), (3, 6): ('square', 'white'), (3, 7): ('square', 'white'), (3, 8): ('square', 'white'), (4, 0): ('triangle', 'white'), (4, 1): ('square', 'white'), (4, 2): ('circle', 'white'), (4, 3): ('square', 'black'), (4, 4): ('triangle', 'white'), (4, 5): ('square', 'black'), (4, 6): ('circle', 'black'), (4, 7): ('square', 'white'), (4, 8): ('triangle', 'white'), (5, 0): ('triangle', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('square', 'white'), (5, 3): ('square', 'white'), (5, 4): ('square', 'white'), (5, 5): ('triangle', 'black'), (5, 6): ('square', 'black'), (5, 7): ('square', 'black'), (5, 8): ('square', 'white'), (6, 0): ('square', 'black'), (6, 1): ('square', 'black'), (6, 2): ('square', 'black'), (6, 3): ('circle', 'black'), (6, 4): ('square', 'black'), (6, 5): ('square', 'white'), (6, 6): ('circle', 'black'), (6, 7): ('circle', 'black'), (6, 8): ('triangle', 'black'), (7, 0): ('square', 'white'), (7, 1): ('circle', 'white'), (7, 2): ('square', 'white'), (7, 3): ('square', 'white'), (7, 4): ('square', 'black'), (7, 5): ('square', 'black'), (7, 6): ('circle', 'white'), (7, 7): ('square', 'white'), (7, 8): ('circle', 'white'), (8, 0): ('square', 'white'), (8, 1): ('triangle', 'black'), (8, 2): ('square', 'black'), (8, 3): ('circle', 'black'), (8, 4): ('triangle', 'white'), (8, 5): ('circle', 'black'), (8, 6): ('triangle', 'black'), (8, 7): ('triangle', 'black'), (8, 8): ('triangle', 'black')}]","(9, 9, 5)"
+266.svg,"[{(0, 0): ('triangle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('square', 'white'), (0, 3): ('circle', 'white'), (0, 4): ('circle', 'white'), (0, 5): ('triangle', 'white'), (0, 6): ('triangle', 'black'), (0, 7): ('circle', 'black'), (0, 8): ('circle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('square', 'black'), (1, 2): ('square', 'black'), (1, 3): ('triangle', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('circle', 'white'), (1, 6): ('square', 'black'), (1, 7): ('circle', 'black'), (1, 8): ('circle', 'white'), (2, 0): ('square', 'white'), (2, 1): ('square', 'white'), (2, 2): ('square', 'white'), (2, 3): ('square', 'white'), (2, 4): ('square', 'black'), (2, 5): ('circle', 'white'), (2, 6): ('triangle', 'white'), (2, 7): ('square', 'white'), (2, 8): ('square', 'white'), (3, 0): ('circle', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('triangle', 'white'), (3, 3): ('triangle', 'black'), (3, 4): ('triangle', 'black'), (3, 5): ('circle', 'black'), (3, 6): ('circle', 'black'), (3, 7): ('triangle', 'black'), (3, 8): ('square', 'black'), (4, 0): ('square', 'black'), (4, 1): ('square', 'white'), (4, 2): ('circle', 'white'), (4, 3): ('square', 'white'), (4, 4): ('triangle', 'white'), (4, 5): ('circle', 'white'), (4, 6): ('circle', 'white'), (4, 7): ('square', 'white'), (4, 8): ('triangle', 'white'), (5, 0): ('square', 'white'), (5, 1): ('triangle', 'black'), (5, 2): ('triangle', 'black'), (5, 3): ('square', 'black'), (5, 4): ('square', 'white'), (5, 5): ('triangle', 'white'), (5, 6): ('triangle', 'white'), (5, 7): ('triangle', 'white'), (5, 8): ('triangle', 'black'), (6, 0): ('circle', 'white'), (6, 1): ('triangle', 'white'), (6, 2): ('square', 'black'), (6, 3): ('triangle', 'white'), (6, 4): ('square', 'white'), (6, 5): ('triangle', 'white'), (6, 6): ('circle', 'white'), (6, 7): ('circle', 'white'), (6, 8): ('triangle', 'white'), (7, 0): ('circle', 'black'), (7, 1): ('triangle', 'white'), (7, 2): ('triangle', 'black'), (7, 3): ('circle', 'black'), (7, 4): ('square', 'white'), (7, 5): ('triangle', 'black'), (7, 6): ('square', 'white'), (7, 7): ('square', 'black'), (7, 8): ('square', 'black'), (8, 0): ('square', 'white'), (8, 1): ('triangle', 'white'), (8, 2): ('triangle', 'white'), (8, 3): ('circle', 'black'), (8, 4): ('circle', 'white'), (8, 5): ('circle', 'black'), (8, 6): ('square', 'black'), (8, 7): ('triangle', 'black'), (8, 8): ('square', 'black')}, {(0, 0): ('square', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('square', 'black'), (0, 3): ('square', 'white'), (0, 4): ('triangle', 'black'), (0, 5): ('circle', 'black'), (0, 6): ('square', 'white'), (0, 7): ('circle', 'black'), (0, 8): ('square', 'black'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('circle', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('square', 'white'), (1, 5): ('triangle', 'black'), (1, 6): ('triangle', 'white'), (1, 7): ('square', 'white'), (1, 8): ('circle', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('circle', 'white'), (2, 3): ('square', 'white'), (2, 4): ('square', 'black'), (2, 5): ('triangle', 'black'), (2, 6): ('circle', 'white'), (2, 7): ('circle', 'black'), (2, 8): ('triangle', 'white'), (3, 0): ('triangle', 'white'), (3, 1): ('triangle', 'black'), (3, 2): ('square', 'black'), (3, 3): ('triangle', 'white'), (3, 4): ('circle', 'white'), (3, 5): ('square', 'white'), (3, 6): ('triangle', 'black'), (3, 7): ('triangle', 'black'), (3, 8): ('square', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('circle', 'white'), (4, 2): ('circle', 'black'), (4, 3): ('triangle', 'black'), (4, 4): ('square', 'white'), (4, 5): ('square', 'black'), (4, 6): ('triangle', 'black'), (4, 7): ('circle', 'black'), (4, 8): ('triangle', 'white'), (5, 0): ('square', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('circle', 'white'), (5, 3): ('square', 'black'), (5, 4): ('circle', 'black'), (5, 5): ('circle', 'black'), (5, 6): ('square', 'white'), (5, 7): ('triangle', 'black'), (5, 8): ('square', 'white'), (6, 0): ('circle', 'white'), (6, 1): ('triangle', 'white'), (6, 2): ('square', 'white'), (6, 3): ('square', 'black'), (6, 4): ('square', 'black'), (6, 5): ('triangle', 'black'), (6, 6): ('triangle', 'white'), (6, 7): ('circle', 'black'), (6, 8): ('circle', 'white'), (7, 0): ('square', 'white'), (7, 1): ('square', 'black'), (7, 2): ('circle', 'black'), (7, 3): ('circle', 'black'), (7, 4): ('triangle', 'black'), (7, 5): ('square', 'black'), (7, 6): ('triangle', 'black'), (7, 7): ('triangle', 'white'), (7, 8): ('triangle', 'black'), (8, 0): ('triangle', 'black'), (8, 1): ('circle', 'white'), (8, 2): ('square', 'white'), (8, 3): ('square', 'white'), (8, 4): ('triangle', 'black'), (8, 5): ('circle', 'white'), (8, 6): ('square', 'white'), (8, 7): ('circle', 'black'), (8, 8): ('square', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('square', 'white'), (0, 2): ('triangle', 'black'), (0, 3): ('triangle', 'white'), (0, 4): ('triangle', 'black'), (0, 5): ('circle', 'white'), (0, 6): ('circle', 'black'), (0, 7): ('triangle', 'black'), (0, 8): ('square', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('square', 'black'), (1, 3): ('triangle', 'black'), (1, 4): ('triangle', 'white'), (1, 5): ('triangle', 'white'), (1, 6): ('square', 'black'), (1, 7): ('triangle', 'black'), (1, 8): ('circle', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('square', 'white'), (2, 2): ('square', 'white'), (2, 3): ('circle', 'white'), (2, 4): ('circle', 'black'), (2, 5): ('triangle', 'black'), (2, 6): ('square', 'white'), (2, 7): ('circle', 'black'), (2, 8): ('circle', 'white'), (3, 0): ('circle', 'black'), (3, 1): ('circle', 'black'), (3, 2): ('square', 'black'), (3, 3): ('triangle', 'black'), (3, 4): ('triangle', 'white'), (3, 5): ('triangle', 'black'), (3, 6): ('circle', 'white'), (3, 7): ('triangle', 'black'), (3, 8): ('square', 'black'), (4, 0): ('square', 'black'), (4, 1): ('square', 'black'), (4, 2): ('square', 'black'), (4, 3): ('triangle', 'black'), (4, 4): ('square', 'white'), (4, 5): ('triangle', 'black'), (4, 6): ('square', 'black'), (4, 7): ('circle', 'white'), (4, 8): ('circle', 'black'), (5, 0): ('square', 'black'), (5, 1): ('square', 'black'), (5, 2): ('square', 'white'), (5, 3): ('circle', 'white'), (5, 4): ('square', 'black'), (5, 5): ('triangle', 'white'), (5, 6): ('triangle', 'black'), (5, 7): ('square', 'black'), (5, 8): ('triangle', 'black'), (6, 0): ('square', 'white'), (6, 1): ('circle', 'black'), (6, 2): ('square', 'white'), (6, 3): ('triangle', 'white'), (6, 4): ('square', 'black'), (6, 5): ('square', 'white'), (6, 6): ('circle', 'black'), (6, 7): ('square', 'black'), (6, 8): ('square', 'white'), (7, 0): ('square', 'black'), (7, 1): ('square', 'white'), (7, 2): ('square', 'white'), (7, 3): ('triangle', 'white'), (7, 4): ('circle', 'white'), (7, 5): ('square', 'white'), (7, 6): ('triangle', 'black'), (7, 7): ('circle', 'black'), (7, 8): ('triangle', 'white'), (8, 0): ('square', 'white'), (8, 1): ('circle', 'white'), (8, 2): ('circle', 'white'), (8, 3): ('triangle', 'black'), (8, 4): ('triangle', 'white'), (8, 5): ('square', 'black'), (8, 6): ('triangle', 'white'), (8, 7): ('square', 'black'), (8, 8): ('triangle', 'white')}, {(0, 0): ('circle', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('square', 'white'), (0, 4): ('square', 'black'), (0, 5): ('circle', 'black'), (0, 6): ('circle', 'white'), (0, 7): ('circle', 'black'), (0, 8): ('circle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('circle', 'white'), (1, 2): ('circle', 'white'), (1, 3): ('square', 'black'), (1, 4): ('triangle', 'black'), (1, 5): ('square', 'white'), (1, 6): ('square', 'white'), (1, 7): ('circle', 'white'), (1, 8): ('square', 'black'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('circle', 'black'), (2, 3): ('square', 'white'), (2, 4): ('square', 'white'), (2, 5): ('triangle', 'black'), (2, 6): ('square', 'black'), (2, 7): ('circle', 'black'), (2, 8): ('square', 'white'), (3, 0): ('circle', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('square', 'white'), (3, 3): ('circle', 'black'), (3, 4): ('square', 'black'), (3, 5): ('circle', 'black'), (3, 6): ('circle', 'black'), (3, 7): ('triangle', 'black'), (3, 8): ('square', 'black'), (4, 0): ('square', 'white'), (4, 1): ('square', 'white'), (4, 2): ('circle', 'white'), (4, 3): ('circle', 'white'), (4, 4): ('square', 'white'), (4, 5): ('circle', 'black'), (4, 6): ('triangle', 'black'), (4, 7): ('triangle', 'black'), (4, 8): ('circle', 'white'), (5, 0): ('circle', 'white'), (5, 1): ('triangle', 'black'), (5, 2): ('triangle', 'white'), (5, 3): ('circle', 'white'), (5, 4): ('circle', 'white'), (5, 5): ('circle', 'white'), (5, 6): ('triangle', 'white'), (5, 7): ('circle', 'black'), (5, 8): ('square', 'black'), (6, 0): ('triangle', 'white'), (6, 1): ('square', 'white'), (6, 2): ('circle', 'white'), (6, 3): ('square', 'black'), (6, 4): ('square', 'white'), (6, 5): ('triangle', 'black'), (6, 6): ('square', 'black'), (6, 7): ('circle', 'black'), (6, 8): ('circle', 'white'), (7, 0): ('square', 'white'), (7, 1): ('square', 'black'), (7, 2): ('triangle', 'white'), (7, 3): ('square', 'black'), (7, 4): ('circle', 'black'), (7, 5): ('triangle', 'white'), (7, 6): ('triangle', 'white'), (7, 7): ('circle', 'black'), (7, 8): ('circle', 'white'), (8, 0): ('triangle', 'black'), (8, 1): ('triangle', 'white'), (8, 2): ('square', 'black'), (8, 3): ('square', 'black'), (8, 4): ('circle', 'white'), (8, 5): ('circle', 'white'), (8, 6): ('square', 'black'), (8, 7): ('square', 'black'), (8, 8): ('triangle', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('circle', 'black'), (0, 2): ('triangle', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('square', 'white'), (0, 6): ('circle', 'white'), (0, 7): ('circle', 'black'), (0, 8): ('circle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('triangle', 'black'), (1, 2): ('square', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('circle', 'black'), (1, 5): ('triangle', 'black'), (1, 6): ('circle', 'white'), (1, 7): ('circle', 'white'), (1, 8): ('square', 'black'), (2, 0): ('circle', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('square', 'black'), (2, 3): ('square', 'white'), (2, 4): ('circle', 'white'), (2, 5): ('circle', 'black'), (2, 6): ('triangle', 'black'), (2, 7): ('square', 'black'), (2, 8): ('triangle', 'black'), (3, 0): ('circle', 'black'), (3, 1): ('circle', 'white'), (3, 2): ('triangle', 'black'), (3, 3): ('square', 'black'), (3, 4): ('triangle', 'black'), (3, 5): ('triangle', 'black'), (3, 6): ('circle', 'black'), (3, 7): ('square', 'white'), (3, 8): ('triangle', 'white'), (4, 0): ('circle', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('square', 'white'), (4, 3): ('circle', 'black'), (4, 4): ('square', 'black'), (4, 5): ('triangle', 'white'), (4, 6): ('square', 'black'), (4, 7): ('square', 'white'), (4, 8): ('triangle', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('circle', 'white'), (5, 2): ('circle', 'white'), (5, 3): ('square', 'black'), (5, 4): ('square', 'black'), (5, 5): ('square', 'black'), (5, 6): ('circle', 'white'), (5, 7): ('square', 'white'), (5, 8): ('triangle', 'black'), (6, 0): ('triangle', 'black'), (6, 1): ('circle', 'white'), (6, 2): ('square', 'black'), (6, 3): ('square', 'black'), (6, 4): ('circle', 'white'), (6, 5): ('triangle', 'black'), (6, 6): ('square', 'white'), (6, 7): ('triangle', 'white'), (6, 8): ('circle', 'black'), (7, 0): ('circle', 'black'), (7, 1): ('triangle', 'white'), (7, 2): ('square', 'black'), (7, 3): ('triangle', 'black'), (7, 4): ('square', 'black'), (7, 5): ('square', 'black'), (7, 6): ('square', 'white'), (7, 7): ('square', 'black'), (7, 8): ('square', 'black'), (8, 0): ('square', 'black'), (8, 1): ('circle', 'white'), (8, 2): ('triangle', 'white'), (8, 3): ('square', 'white'), (8, 4): ('triangle', 'white'), (8, 5): ('triangle', 'white'), (8, 6): ('triangle', 'white'), (8, 7): ('circle', 'white'), (8, 8): ('circle', 'black')}]","(9, 9, 5)"
+267.svg,"[{(0, 0): ('circle', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('square', 'white'), (0, 3): ('triangle', 'black'), (0, 4): ('circle', 'black'), (0, 5): ('triangle', 'black'), (0, 6): ('triangle', 'black'), (0, 7): ('circle', 'white'), (0, 8): ('circle', 'white'), (1, 0): ('square', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('triangle', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('triangle', 'white'), (1, 5): ('triangle', 'white'), (1, 6): ('triangle', 'white'), (1, 7): ('circle', 'white'), (1, 8): ('circle', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('square', 'white'), (2, 2): ('triangle', 'black'), (2, 3): ('triangle', 'white'), (2, 4): ('square', 'black'), (2, 5): ('triangle', 'white'), (2, 6): ('triangle', 'black'), (2, 7): ('circle', 'white'), (2, 8): ('square', 'white'), (3, 0): ('triangle', 'black'), (3, 1): ('square', 'white'), (3, 2): ('triangle', 'white'), (3, 3): ('triangle', 'white'), (3, 4): ('triangle', 'white'), (3, 5): ('square', 'black'), (3, 6): ('circle', 'black'), (3, 7): ('square', 'black'), (3, 8): ('triangle', 'white'), (4, 0): ('square', 'white'), (4, 1): ('circle', 'black'), (4, 2): ('triangle', 'black'), (4, 3): ('square', 'black'), (4, 4): ('triangle', 'white'), (4, 5): ('square', 'black'), (4, 6): ('square', 'black'), (4, 7): ('triangle', 'white'), (4, 8): ('circle', 'black'), (5, 0): ('circle', 'white'), (5, 1): ('triangle', 'black'), (5, 2): ('square', 'white'), (5, 3): ('triangle', 'black'), (5, 4): ('circle', 'black'), (5, 5): ('triangle', 'black'), (5, 6): ('square', 'black'), (5, 7): ('circle', 'white'), (5, 8): ('circle', 'black'), (6, 0): ('square', 'black'), (6, 1): ('triangle', 'white'), (6, 2): ('square', 'white'), (6, 3): ('circle', 'white'), (6, 4): ('circle', 'white'), (6, 5): ('triangle', 'white'), (6, 6): ('square', 'white'), (6, 7): ('square', 'black'), (6, 8): ('triangle', 'white'), (7, 0): ('triangle', 'white'), (7, 1): ('square', 'black'), (7, 2): ('triangle', 'white'), (7, 3): ('triangle', 'black'), (7, 4): ('circle', 'black'), (7, 5): ('triangle', 'white'), (7, 6): ('square', 'black'), (7, 7): ('circle', 'black'), (7, 8): ('circle', 'white'), (8, 0): ('circle', 'white'), (8, 1): ('square', 'white'), (8, 2): ('circle', 'white'), (8, 3): ('triangle', 'black'), (8, 4): ('circle', 'white'), (8, 5): ('circle', 'white'), (8, 6): ('triangle', 'black'), (8, 7): ('circle', 'black'), (8, 8): ('triangle', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'black'), (0, 3): ('circle', 'white'), (0, 4): ('circle', 'white'), (0, 5): ('square', 'white'), (0, 6): ('triangle', 'black'), (0, 7): ('square', 'black'), (0, 8): ('square', 'white'), (1, 0): ('square', 'white'), (1, 1): ('square', 'black'), (1, 2): ('circle', 'black'), (1, 3): ('triangle', 'white'), (1, 4): ('triangle', 'white'), (1, 5): ('square', 'white'), (1, 6): ('square', 'black'), (1, 7): ('square', 'white'), (1, 8): ('square', 'white'), (2, 0): ('triangle', 'white'), (2, 1): ('circle', 'white'), (2, 2): ('square', 'black'), (2, 3): ('triangle', 'black'), (2, 4): ('triangle', 'white'), (2, 5): ('square', 'black'), (2, 6): ('circle', 'black'), (2, 7): ('triangle', 'white'), (2, 8): ('triangle', 'white'), (3, 0): ('circle', 'black'), (3, 1): ('square', 'white'), (3, 2): ('circle', 'white'), (3, 3): ('square', 'white'), (3, 4): ('circle', 'black'), (3, 5): ('triangle', 'white'), (3, 6): ('circle', 'black'), (3, 7): ('triangle', 'black'), (3, 8): ('triangle', 'black'), (4, 0): ('triangle', 'black'), (4, 1): ('triangle', 'white'), (4, 2): ('triangle', 'black'), (4, 3): ('triangle', 'white'), (4, 4): ('circle', 'black'), (4, 5): ('square', 'white'), (4, 6): ('circle', 'white'), (4, 7): ('square', 'black'), (4, 8): ('circle', 'white'), (5, 0): ('square', 'white'), (5, 1): ('triangle', 'black'), (5, 2): ('square', 'black'), (5, 3): ('square', 'white'), (5, 4): ('triangle', 'black'), (5, 5): ('triangle', 'black'), (5, 6): ('circle', 'black'), (5, 7): ('square', 'white'), (5, 8): ('circle', 'white'), (6, 0): ('circle', 'black'), (6, 1): ('triangle', 'white'), (6, 2): ('circle', 'white'), (6, 3): ('triangle', 'black'), (6, 4): ('triangle', 'white'), (6, 5): ('circle', 'white'), (6, 6): ('square', 'white'), (6, 7): ('circle', 'black'), (6, 8): ('square', 'white'), (7, 0): ('circle', 'white'), (7, 1): ('square', 'white'), (7, 2): ('square', 'white'), (7, 3): ('square', 'black'), (7, 4): ('triangle', 'white'), (7, 5): ('triangle', 'white'), (7, 6): ('triangle', 'black'), (7, 7): ('triangle', 'black'), (7, 8): ('triangle', 'black'), (8, 0): ('triangle', 'white'), (8, 1): ('triangle', 'white'), (8, 2): ('triangle', 'white'), (8, 3): ('square', 'white'), (8, 4): ('triangle', 'black'), (8, 5): ('circle', 'black'), (8, 6): ('triangle', 'black'), (8, 7): ('circle', 'white'), (8, 8): ('square', 'black')}, {(0, 0): ('triangle', 'black'), (0, 1): ('square', 'white'), (0, 2): ('triangle', 'black'), (0, 3): ('circle', 'white'), (0, 4): ('square', 'white'), (0, 5): ('circle', 'white'), (0, 6): ('triangle', 'white'), (0, 7): ('square', 'black'), (0, 8): ('square', 'black'), (1, 0): ('square', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('triangle', 'black'), (1, 3): ('triangle', 'black'), (1, 4): ('circle', 'black'), (1, 5): ('circle', 'white'), (1, 6): ('triangle', 'white'), (1, 7): ('circle', 'white'), (1, 8): ('circle', 'white'), (2, 0): ('triangle', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('triangle', 'white'), (2, 3): ('circle', 'black'), (2, 4): ('circle', 'black'), (2, 5): ('triangle', 'black'), (2, 6): ('square', 'white'), (2, 7): ('square', 'white'), (2, 8): ('circle', 'white'), (3, 0): ('square', 'black'), (3, 1): ('circle', 'white'), (3, 2): ('square', 'black'), (3, 3): ('circle', 'black'), (3, 4): ('triangle', 'black'), (3, 5): ('circle', 'white'), (3, 6): ('circle', 'black'), (3, 7): ('circle', 'white'), (3, 8): ('circle', 'black'), (4, 0): ('square', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('circle', 'black'), (4, 3): ('triangle', 'white'), (4, 4): ('square', 'black'), (4, 5): ('triangle', 'white'), (4, 6): ('circle', 'black'), (4, 7): ('square', 'white'), (4, 8): ('triangle', 'black'), (5, 0): ('square', 'white'), (5, 1): ('square', 'white'), (5, 2): ('square', 'black'), (5, 3): ('triangle', 'white'), (5, 4): ('circle', 'white'), (5, 5): ('square', 'black'), (5, 6): ('circle', 'black'), (5, 7): ('triangle', 'black'), (5, 8): ('square', 'black'), (6, 0): ('circle', 'white'), (6, 1): ('square', 'white'), (6, 2): ('triangle', 'white'), (6, 3): ('circle', 'white'), (6, 4): ('circle', 'white'), (6, 5): ('circle', 'black'), (6, 6): ('circle', 'white'), (6, 7): ('triangle', 'black'), (6, 8): ('square', 'black'), (7, 0): ('circle', 'white'), (7, 1): ('circle', 'white'), (7, 2): ('circle', 'black'), (7, 3): ('square', 'black'), (7, 4): ('triangle', 'white'), (7, 5): ('triangle', 'white'), (7, 6): ('square', 'black'), (7, 7): ('triangle', 'black'), (7, 8): ('triangle', 'black'), (8, 0): ('triangle', 'black'), (8, 1): ('circle', 'black'), (8, 2): ('triangle', 'white'), (8, 3): ('circle', 'white'), (8, 4): ('square', 'white'), (8, 5): ('square', 'black'), (8, 6): ('square', 'black'), (8, 7): ('triangle', 'black'), (8, 8): ('circle', 'white')}, {(0, 0): ('circle', 'white'), (0, 1): ('square', 'black'), (0, 2): ('circle', 'black'), (0, 3): ('circle', 'black'), (0, 4): ('circle', 'black'), (0, 5): ('square', 'black'), (0, 6): ('square', 'black'), (0, 7): ('circle', 'white'), (0, 8): ('circle', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('square', 'black'), (1, 3): ('circle', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('triangle', 'black'), (1, 6): ('square', 'white'), (1, 7): ('triangle', 'white'), (1, 8): ('square', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('square', 'black'), (2, 2): ('square', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('square', 'black'), (2, 5): ('square', 'black'), (2, 6): ('square', 'black'), (2, 7): ('square', 'white'), (2, 8): ('triangle', 'black'), (3, 0): ('circle', 'white'), (3, 1): ('triangle', 'white'), (3, 2): ('square', 'black'), (3, 3): ('circle', 'white'), (3, 4): ('triangle', 'white'), (3, 5): ('circle', 'white'), (3, 6): ('square', 'white'), (3, 7): ('square', 'black'), (3, 8): ('square', 'black'), (4, 0): ('circle', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('square', 'white'), (4, 3): ('triangle', 'white'), (4, 4): ('square', 'black'), (4, 5): ('square', 'black'), (4, 6): ('triangle', 'white'), (4, 7): ('triangle', 'white'), (4, 8): ('square', 'white'), (5, 0): ('triangle', 'white'), (5, 1): ('square', 'black'), (5, 2): ('square', 'white'), (5, 3): ('square', 'white'), (5, 4): ('circle', 'black'), (5, 5): ('triangle', 'black'), (5, 6): ('square', 'black'), (5, 7): ('circle', 'white'), (5, 8): ('triangle', 'white'), (6, 0): ('circle', 'black'), (6, 1): ('triangle', 'white'), (6, 2): ('square', 'black'), (6, 3): ('triangle', 'white'), (6, 4): ('circle', 'white'), (6, 5): ('square', 'white'), (6, 6): ('triangle', 'black'), (6, 7): ('circle', 'white'), (6, 8): ('square', 'white'), (7, 0): ('square', 'white'), (7, 1): ('circle', 'white'), (7, 2): ('circle', 'white'), (7, 3): ('square', 'black'), (7, 4): ('square', 'white'), (7, 5): ('square', 'black'), (7, 6): ('triangle', 'black'), (7, 7): ('square', 'black'), (7, 8): ('triangle', 'white'), (8, 0): ('square', 'white'), (8, 1): ('triangle', 'white'), (8, 2): ('square', 'black'), (8, 3): ('triangle', 'white'), (8, 4): ('circle', 'white'), (8, 5): ('square', 'white'), (8, 6): ('square', 'black'), (8, 7): ('triangle', 'black'), (8, 8): ('triangle', 'white')}, {(0, 0): ('triangle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('square', 'black'), (0, 4): ('circle', 'black'), (0, 5): ('circle', 'black'), (0, 6): ('triangle', 'black'), (0, 7): ('square', 'black'), (0, 8): ('triangle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('square', 'black'), (1, 6): ('circle', 'white'), (1, 7): ('square', 'black'), (1, 8): ('triangle', 'black'), (2, 0): ('triangle', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('square', 'black'), (2, 3): ('square', 'black'), (2, 4): ('circle', 'white'), (2, 5): ('circle', 'white'), (2, 6): ('circle', 'white'), (2, 7): ('circle', 'white'), (2, 8): ('triangle', 'white'), (3, 0): ('triangle', 'black'), (3, 1): ('triangle', 'white'), (3, 2): ('circle', 'white'), (3, 3): ('triangle', 'black'), (3, 4): ('circle', 'white'), (3, 5): ('square', 'white'), (3, 6): ('triangle', 'black'), (3, 7): ('square', 'black'), (3, 8): ('square', 'white'), (4, 0): ('triangle', 'black'), (4, 1): ('triangle', 'black'), (4, 2): ('triangle', 'black'), (4, 3): ('square', 'black'), (4, 4): ('square', 'black'), (4, 5): ('circle', 'black'), (4, 6): ('square', 'white'), (4, 7): ('triangle', 'black'), (4, 8): ('circle', 'black'), (5, 0): ('triangle', 'black'), (5, 1): ('square', 'white'), (5, 2): ('triangle', 'black'), (5, 3): ('triangle', 'black'), (5, 4): ('triangle', 'black'), (5, 5): ('square', 'white'), (5, 6): ('square', 'white'), (5, 7): ('square', 'white'), (5, 8): ('square', 'black'), (6, 0): ('triangle', 'white'), (6, 1): ('circle', 'black'), (6, 2): ('triangle', 'white'), (6, 3): ('triangle', 'black'), (6, 4): ('circle', 'white'), (6, 5): ('triangle', 'white'), (6, 6): ('triangle', 'white'), (6, 7): ('square', 'white'), (6, 8): ('circle', 'white'), (7, 0): ('square', 'white'), (7, 1): ('triangle', 'black'), (7, 2): ('triangle', 'black'), (7, 3): ('triangle', 'white'), (7, 4): ('circle', 'black'), (7, 5): ('square', 'white'), (7, 6): ('triangle', 'white'), (7, 7): ('square', 'black'), (7, 8): ('circle', 'white'), (8, 0): ('circle', 'black'), (8, 1): ('circle', 'black'), (8, 2): ('square', 'white'), (8, 3): ('triangle', 'black'), (8, 4): ('circle', 'black'), (8, 5): ('square', 'white'), (8, 6): ('square', 'black'), (8, 7): ('triangle', 'black'), (8, 8): ('circle', 'black')}]","(9, 9, 5)"
+268.svg,"[{(0, 0): ('triangle', 'white'), (0, 1): ('square', 'black'), (0, 2): ('square', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('circle', 'black'), (0, 5): ('triangle', 'white'), (0, 6): ('circle', 'white'), (0, 7): ('square', 'black'), (0, 8): ('square', 'black'), (1, 0): ('triangle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('circle', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('triangle', 'black'), (1, 6): ('triangle', 'black'), (1, 7): ('square', 'black'), (1, 8): ('circle', 'white'), (2, 0): ('square', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('triangle', 'white'), (2, 4): ('triangle', 'white'), (2, 5): ('square', 'white'), (2, 6): ('triangle', 'black'), (2, 7): ('triangle', 'white'), (2, 8): ('triangle', 'white'), (3, 0): ('triangle', 'white'), (3, 1): ('circle', 'white'), (3, 2): ('circle', 'white'), (3, 3): ('triangle', 'white'), (3, 4): ('circle', 'black'), (3, 5): ('circle', 'black'), (3, 6): ('square', 'black'), (3, 7): ('triangle', 'white'), (3, 8): ('triangle', 'white'), (4, 0): ('circle', 'white'), (4, 1): ('square', 'white'), (4, 2): ('circle', 'white'), (4, 3): ('circle', 'black'), (4, 4): ('triangle', 'black'), (4, 5): ('circle', 'white'), (4, 6): ('square', 'white'), (4, 7): ('square', 'white'), (4, 8): ('triangle', 'white'), (5, 0): ('square', 'white'), (5, 1): ('circle', 'white'), (5, 2): ('circle', 'black'), (5, 3): ('triangle', 'black'), (5, 4): ('square', 'white'), (5, 5): ('square', 'black'), (5, 6): ('square', 'black'), (5, 7): ('square', 'white'), (5, 8): ('square', 'white'), (6, 0): ('circle', 'black'), (6, 1): ('square', 'white'), (6, 2): ('triangle', 'black'), (6, 3): ('triangle', 'black'), (6, 4): ('square', 'black'), (6, 5): ('square', 'white'), (6, 6): ('triangle', 'black'), (6, 7): ('circle', 'white'), (6, 8): ('triangle', 'black'), (7, 0): ('square', 'white'), (7, 1): ('triangle', 'white'), (7, 2): ('circle', 'white'), (7, 3): ('triangle', 'white'), (7, 4): ('square', 'white'), (7, 5): ('square', 'black'), (7, 6): ('triangle', 'white'), (7, 7): ('triangle', 'black'), (7, 8): ('circle', 'black'), (8, 0): ('square', 'white'), (8, 1): ('triangle', 'white'), (8, 2): ('circle', 'white'), (8, 3): ('circle', 'black'), (8, 4): ('square', 'black'), (8, 5): ('triangle', 'black'), (8, 6): ('triangle', 'white'), (8, 7): ('triangle', 'white'), (8, 8): ('square', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('square', 'black'), (0, 2): ('square', 'white'), (0, 3): ('circle', 'white'), (0, 4): ('triangle', 'white'), (0, 5): ('circle', 'white'), (0, 6): ('square', 'black'), (0, 7): ('circle', 'white'), (0, 8): ('square', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('square', 'white'), (1, 3): ('square', 'black'), (1, 4): ('square', 'black'), (1, 5): ('circle', 'black'), (1, 6): ('circle', 'white'), (1, 7): ('triangle', 'white'), (1, 8): ('square', 'white'), (2, 0): ('circle', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('square', 'black'), (2, 4): ('triangle', 'white'), (2, 5): ('circle', 'black'), (2, 6): ('square', 'black'), (2, 7): ('square', 'white'), (2, 8): ('circle', 'black'), (3, 0): ('circle', 'black'), (3, 1): ('square', 'white'), (3, 2): ('circle', 'black'), (3, 3): ('square', 'black'), (3, 4): ('square', 'black'), (3, 5): ('square', 'white'), (3, 6): ('square', 'white'), (3, 7): ('circle', 'white'), (3, 8): ('circle', 'black'), (4, 0): ('triangle', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('triangle', 'white'), (4, 3): ('square', 'white'), (4, 4): ('square', 'black'), (4, 5): ('circle', 'white'), (4, 6): ('square', 'white'), (4, 7): ('square', 'white'), (4, 8): ('square', 'white'), (5, 0): ('circle', 'black'), (5, 1): ('triangle', 'white'), (5, 2): ('circle', 'white'), (5, 3): ('square', 'black'), (5, 4): ('square', 'white'), (5, 5): ('square', 'black'), (5, 6): ('triangle', 'black'), (5, 7): ('circle', 'black'), (5, 8): ('circle', 'white'), (6, 0): ('triangle', 'black'), (6, 1): ('square', 'white'), (6, 2): ('square', 'white'), (6, 3): ('triangle', 'white'), (6, 4): ('circle', 'white'), (6, 5): ('triangle', 'black'), (6, 6): ('circle', 'black'), (6, 7): ('circle', 'white'), (6, 8): ('triangle', 'white'), (7, 0): ('triangle', 'black'), (7, 1): ('square', 'black'), (7, 2): ('triangle', 'white'), (7, 3): ('circle', 'white'), (7, 4): ('square', 'black'), (7, 5): ('circle', 'black'), (7, 6): ('square', 'black'), (7, 7): ('square', 'black'), (7, 8): ('triangle', 'black'), (8, 0): ('square', 'black'), (8, 1): ('circle', 'white'), (8, 2): ('triangle', 'white'), (8, 3): ('square', 'white'), (8, 4): ('triangle', 'white'), (8, 5): ('square', 'white'), (8, 6): ('triangle', 'black'), (8, 7): ('circle', 'white'), (8, 8): ('square', 'black')}, {(0, 0): ('circle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'black'), (0, 3): ('triangle', 'black'), (0, 4): ('circle', 'black'), (0, 5): ('square', 'white'), (0, 6): ('square', 'white'), (0, 7): ('square', 'black'), (0, 8): ('circle', 'black'), (1, 0): ('square', 'white'), (1, 1): ('square', 'white'), (1, 2): ('triangle', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('square', 'white'), (1, 5): ('square', 'black'), (1, 6): ('square', 'black'), (1, 7): ('triangle', 'black'), (1, 8): ('triangle', 'white'), (2, 0): ('circle', 'white'), (2, 1): ('square', 'black'), (2, 2): ('circle', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('square', 'white'), (2, 5): ('triangle', 'white'), (2, 6): ('square', 'white'), (2, 7): ('square', 'white'), (2, 8): ('triangle', 'black'), (3, 0): ('circle', 'white'), (3, 1): ('circle', 'white'), (3, 2): ('square', 'black'), (3, 3): ('triangle', 'black'), (3, 4): ('square', 'white'), (3, 5): ('triangle', 'white'), (3, 6): ('circle', 'white'), (3, 7): ('circle', 'black'), (3, 8): ('circle', 'black'), (4, 0): ('square', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('circle', 'black'), (4, 3): ('circle', 'white'), (4, 4): ('triangle', 'white'), (4, 5): ('square', 'black'), (4, 6): ('triangle', 'black'), (4, 7): ('square', 'black'), (4, 8): ('triangle', 'white'), (5, 0): ('square', 'black'), (5, 1): ('square', 'black'), (5, 2): ('square', 'black'), (5, 3): ('square', 'white'), (5, 4): ('square', 'white'), (5, 5): ('circle', 'white'), (5, 6): ('triangle', 'white'), (5, 7): ('triangle', 'white'), (5, 8): ('square', 'white'), (6, 0): ('square', 'white'), (6, 1): ('square', 'black'), (6, 2): ('triangle', 'white'), (6, 3): ('triangle', 'white'), (6, 4): ('circle', 'black'), (6, 5): ('triangle', 'black'), (6, 6): ('circle', 'white'), (6, 7): ('square', 'white'), (6, 8): ('triangle', 'black'), (7, 0): ('triangle', 'black'), (7, 1): ('triangle', 'white'), (7, 2): ('triangle', 'black'), (7, 3): ('triangle', 'black'), (7, 4): ('triangle', 'black'), (7, 5): ('circle', 'white'), (7, 6): ('circle', 'white'), (7, 7): ('circle', 'black'), (7, 8): ('triangle', 'white'), (8, 0): ('circle', 'black'), (8, 1): ('square', 'black'), (8, 2): ('square', 'white'), (8, 3): ('triangle', 'white'), (8, 4): ('circle', 'black'), (8, 5): ('square', 'black'), (8, 6): ('square', 'white'), (8, 7): ('square', 'black'), (8, 8): ('square', 'black')}, {(0, 0): ('square', 'white'), (0, 1): ('circle', 'white'), (0, 2): ('triangle', 'black'), (0, 3): ('circle', 'white'), (0, 4): ('circle', 'white'), (0, 5): ('triangle', 'white'), (0, 6): ('triangle', 'white'), (0, 7): ('triangle', 'white'), (0, 8): ('triangle', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'black'), (1, 3): ('triangle', 'white'), (1, 4): ('circle', 'black'), (1, 5): ('square', 'white'), (1, 6): ('square', 'white'), (1, 7): ('circle', 'black'), (1, 8): ('square', 'white'), (2, 0): ('square', 'black'), (2, 1): ('triangle', 'white'), (2, 2): ('circle', 'white'), (2, 3): ('triangle', 'black'), (2, 4): ('triangle', 'white'), (2, 5): ('circle', 'white'), (2, 6): ('triangle', 'black'), (2, 7): ('triangle', 'black'), (2, 8): ('square', 'white'), (3, 0): ('triangle', 'white'), (3, 1): ('square', 'black'), (3, 2): ('circle', 'white'), (3, 3): ('square', 'white'), (3, 4): ('circle', 'white'), (3, 5): ('square', 'black'), (3, 6): ('triangle', 'white'), (3, 7): ('triangle', 'black'), (3, 8): ('triangle', 'white'), (4, 0): ('triangle', 'white'), (4, 1): ('square', 'black'), (4, 2): ('circle', 'black'), (4, 3): ('square', 'white'), (4, 4): ('square', 'black'), (4, 5): ('circle', 'black'), (4, 6): ('circle', 'white'), (4, 7): ('square', 'black'), (4, 8): ('circle', 'black'), (5, 0): ('circle', 'white'), (5, 1): ('triangle', 'white'), (5, 2): ('circle', 'black'), (5, 3): ('triangle', 'black'), (5, 4): ('square', 'white'), (5, 5): ('triangle', 'white'), (5, 6): ('circle', 'black'), (5, 7): ('square', 'white'), (5, 8): ('circle', 'white'), (6, 0): ('triangle', 'white'), (6, 1): ('square', 'black'), (6, 2): ('square', 'black'), (6, 3): ('circle', 'black'), (6, 4): ('triangle', 'white'), (6, 5): ('square', 'white'), (6, 6): ('circle', 'black'), (6, 7): ('square', 'black'), (6, 8): ('circle', 'white'), (7, 0): ('square', 'white'), (7, 1): ('triangle', 'black'), (7, 2): ('square', 'black'), (7, 3): ('circle', 'black'), (7, 4): ('circle', 'black'), (7, 5): ('circle', 'black'), (7, 6): ('square', 'black'), (7, 7): ('triangle', 'black'), (7, 8): ('triangle', 'white'), (8, 0): ('circle', 'white'), (8, 1): ('triangle', 'white'), (8, 2): ('square', 'black'), (8, 3): ('triangle', 'black'), (8, 4): ('circle', 'white'), (8, 5): ('circle', 'black'), (8, 6): ('square', 'white'), (8, 7): ('triangle', 'black'), (8, 8): ('square', 'white')}, {(0, 0): ('square', 'black'), (0, 1): ('circle', 'black'), (0, 2): ('triangle', 'white'), (0, 3): ('square', 'white'), (0, 4): ('square', 'black'), (0, 5): ('circle', 'black'), (0, 6): ('circle', 'black'), (0, 7): ('circle', 'black'), (0, 8): ('circle', 'black'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'white'), (1, 3): ('triangle', 'black'), (1, 4): ('square', 'black'), (1, 5): ('square', 'white'), (1, 6): ('circle', 'black'), (1, 7): ('triangle', 'white'), (1, 8): ('circle', 'black'), (2, 0): ('square', 'white'), (2, 1): ('square', 'white'), (2, 2): ('circle', 'white'), (2, 3): ('triangle', 'white'), (2, 4): ('square', 'white'), (2, 5): ('circle', 'black'), (2, 6): ('circle', 'black'), (2, 7): ('square', 'black'), (2, 8): ('circle', 'black'), (3, 0): ('square', 'white'), (3, 1): ('circle', 'white'), (3, 2): ('circle', 'black'), (3, 3): ('circle', 'black'), (3, 4): ('square', 'white'), (3, 5): ('square', 'white'), (3, 6): ('square', 'black'), (3, 7): ('triangle', 'black'), (3, 8): ('square', 'black'), (4, 0): ('circle', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('square', 'white'), (4, 3): ('triangle', 'white'), (4, 4): ('triangle', 'black'), (4, 5): ('square', 'black'), (4, 6): ('circle', 'black'), (4, 7): ('square', 'black'), (4, 8): ('circle', 'black'), (5, 0): ('circle', 'white'), (5, 1): ('square', 'black'), (5, 2): ('circle', 'white'), (5, 3): ('square', 'black'), (5, 4): ('square', 'black'), (5, 5): ('square', 'white'), (5, 6): ('triangle', 'white'), (5, 7): ('circle', 'white'), (5, 8): ('circle', 'white'), (6, 0): ('square', 'black'), (6, 1): ('triangle', 'black'), (6, 2): ('circle', 'black'), (6, 3): ('circle', 'white'), (6, 4): ('triangle', 'white'), (6, 5): ('circle', 'black'), (6, 6): ('circle', 'white'), (6, 7): ('square', 'black'), (6, 8): ('circle', 'black'), (7, 0): ('circle', 'white'), (7, 1): ('circle', 'black'), (7, 2): ('circle', 'black'), (7, 3): ('triangle', 'black'), (7, 4): ('square', 'black'), (7, 5): ('triangle', 'white'), (7, 6): ('circle', 'white'), (7, 7): ('triangle', 'black'), (7, 8): ('square', 'black'), (8, 0): ('triangle', 'black'), (8, 1): ('square', 'white'), (8, 2): ('triangle', 'black'), (8, 3): ('square', 'white'), (8, 4): ('triangle', 'black'), (8, 5): ('circle', 'white'), (8, 6): ('triangle', 'black'), (8, 7): ('circle', 'white'), (8, 8): ('circle', 'white')}]","(9, 9, 5)"
+269.svg,"[{(0, 0): ('triangle', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('triangle', 'black'), (0, 3): ('circle', 'white'), (0, 4): ('square', 'black'), (0, 5): ('triangle', 'white'), (0, 6): ('circle', 'black'), (0, 7): ('triangle', 'white'), (0, 8): ('triangle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('square', 'white'), (1, 2): ('square', 'white'), (1, 3): ('circle', 'black'), (1, 4): ('circle', 'white'), (1, 5): ('triangle', 'white'), (1, 6): ('circle', 'black'), (1, 7): ('triangle', 'white'), (1, 8): ('circle', 'black'), (2, 0): ('circle', 'white'), (2, 1): ('circle', 'black'), (2, 2): ('square', 'white'), (2, 3): ('triangle', 'white'), (2, 4): ('circle', 'white'), (2, 5): ('square', 'white'), (2, 6): ('circle', 'white'), (2, 7): ('square', 'white'), (2, 8): ('triangle', 'white'), (3, 0): ('triangle', 'white'), (3, 1): ('triangle', 'black'), (3, 2): ('triangle', 'white'), (3, 3): ('square', 'white'), (3, 4): ('circle', 'white'), (3, 5): ('triangle', 'white'), (3, 6): ('square', 'black'), (3, 7): ('triangle', 'black'), (3, 8): ('square', 'black'), (4, 0): ('square', 'white'), (4, 1): ('circle', 'white'), (4, 2): ('square', 'white'), (4, 3): ('triangle', 'white'), (4, 4): ('square', 'white'), (4, 5): ('square', 'white'), (4, 6): ('triangle', 'white'), (4, 7): ('triangle', 'white'), (4, 8): ('triangle', 'black'), (5, 0): ('square', 'black'), (5, 1): ('square', 'black'), (5, 2): ('circle', 'black'), (5, 3): ('circle', 'black'), (5, 4): ('circle', 'white'), (5, 5): ('square', 'white'), (5, 6): ('square', 'white'), (5, 7): ('triangle', 'white'), (5, 8): ('triangle', 'black'), (6, 0): ('square', 'black'), (6, 1): ('square', 'black'), (6, 2): ('circle', 'black'), (6, 3): ('triangle', 'black'), (6, 4): ('circle', 'white'), (6, 5): ('square', 'white'), (6, 6): ('circle', 'black'), (6, 7): ('triangle', 'black'), (6, 8): ('triangle', 'black'), (7, 0): ('triangle', 'black'), (7, 1): ('square', 'white'), (7, 2): ('triangle', 'black'), (7, 3): ('circle', 'white'), (7, 4): ('triangle', 'white'), (7, 5): ('square', 'black'), (7, 6): ('circle', 'black'), (7, 7): ('square', 'white'), (7, 8): ('circle', 'white'), (8, 0): ('triangle', 'white'), (8, 1): ('triangle', 'white'), (8, 2): ('triangle', 'white'), (8, 3): ('circle', 'black'), (8, 4): ('triangle', 'white'), (8, 5): ('triangle', 'black'), (8, 6): ('circle', 'white'), (8, 7): ('square', 'black'), (8, 8): ('square', 'white')}, {(0, 0): ('triangle', 'black'), (0, 1): ('triangle', 'white'), (0, 2): ('circle', 'white'), (0, 3): ('circle', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('square', 'white'), (0, 6): ('circle', 'white'), (0, 7): ('square', 'white'), (0, 8): ('triangle', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('circle', 'white'), (1, 2): ('circle', 'black'), (1, 3): ('circle', 'black'), (1, 4): ('triangle', 'white'), (1, 5): ('triangle', 'white'), (1, 6): ('triangle', 'black'), (1, 7): ('triangle', 'white'), (1, 8): ('square', 'black'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('circle', 'white'), (2, 3): ('square', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('triangle', 'black'), (2, 6): ('triangle', 'black'), (2, 7): ('circle', 'white'), (2, 8): ('square', 'black'), (3, 0): ('circle', 'black'), (3, 1): ('square', 'white'), (3, 2): ('square', 'black'), (3, 3): ('triangle', 'black'), (3, 4): ('circle', 'white'), (3, 5): ('circle', 'black'), (3, 6): ('triangle', 'black'), (3, 7): ('square', 'black'), (3, 8): ('square', 'white'), (4, 0): ('square', 'black'), (4, 1): ('circle', 'black'), (4, 2): ('square', 'black'), (4, 3): ('triangle', 'white'), (4, 4): ('triangle', 'white'), (4, 5): ('triangle', 'black'), (4, 6): ('triangle', 'black'), (4, 7): ('square', 'black'), (4, 8): ('square', 'black'), (5, 0): ('square', 'white'), (5, 1): ('square', 'black'), (5, 2): ('circle', 'white'), (5, 3): ('circle', 'white'), (5, 4): ('circle', 'white'), (5, 5): ('triangle', 'white'), (5, 6): ('triangle', 'black'), (5, 7): ('triangle', 'black'), (5, 8): ('triangle', 'white'), (6, 0): ('square', 'white'), (6, 1): ('circle', 'white'), (6, 2): ('triangle', 'white'), (6, 3): ('circle', 'black'), (6, 4): ('circle', 'white'), (6, 5): ('triangle', 'black'), (6, 6): ('circle', 'black'), (6, 7): ('triangle', 'white'), (6, 8): ('circle', 'black'), (7, 0): ('circle', 'white'), (7, 1): ('square', 'black'), (7, 2): ('circle', 'black'), (7, 3): ('square', 'white'), (7, 4): ('square', 'black'), (7, 5): ('circle', 'black'), (7, 6): ('square', 'white'), (7, 7): ('triangle', 'black'), (7, 8): ('circle', 'white'), (8, 0): ('square', 'black'), (8, 1): ('triangle', 'white'), (8, 2): ('triangle', 'black'), (8, 3): ('circle', 'white'), (8, 4): ('square', 'white'), (8, 5): ('triangle', 'white'), (8, 6): ('square', 'white'), (8, 7): ('square', 'black'), (8, 8): ('square', 'white')}, {(0, 0): ('square', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('circle', 'white'), (0, 3): ('square', 'black'), (0, 4): ('circle', 'white'), (0, 5): ('square', 'white'), (0, 6): ('triangle', 'white'), (0, 7): ('circle', 'white'), (0, 8): ('circle', 'white'), (1, 0): ('circle', 'black'), (1, 1): ('triangle', 'white'), (1, 2): ('circle', 'white'), (1, 3): ('square', 'black'), (1, 4): ('triangle', 'white'), (1, 5): ('square', 'white'), (1, 6): ('triangle', 'black'), (1, 7): ('square', 'white'), (1, 8): ('triangle', 'black'), (2, 0): ('triangle', 'black'), (2, 1): ('triangle', 'black'), (2, 2): ('triangle', 'black'), (2, 3): ('triangle', 'black'), (2, 4): ('triangle', 'white'), (2, 5): ('square', 'black'), (2, 6): ('triangle', 'white'), (2, 7): ('triangle', 'white'), (2, 8): ('triangle', 'black'), (3, 0): ('triangle', 'white'), (3, 1): ('square', 'black'), (3, 2): ('triangle', 'white'), (3, 3): ('triangle', 'black'), (3, 4): ('square', 'black'), (3, 5): ('circle', 'white'), (3, 6): ('triangle', 'black'), (3, 7): ('triangle', 'black'), (3, 8): ('square', 'black'), (4, 0): ('circle', 'white'), (4, 1): ('square', 'black'), (4, 2): ('triangle', 'white'), (4, 3): ('square', 'white'), (4, 4): ('triangle', 'white'), (4, 5): ('circle', 'black'), (4, 6): ('triangle', 'white'), (4, 7): ('triangle', 'black'), (4, 8): ('circle', 'black'), (5, 0): ('square', 'white'), (5, 1): ('circle', 'black'), (5, 2): ('triangle', 'white'), (5, 3): ('circle', 'black'), (5, 4): ('square', 'white'), (5, 5): ('triangle', 'black'), (5, 6): ('square', 'white'), (5, 7): ('square', 'black'), (5, 8): ('circle', 'white'), (6, 0): ('square', 'black'), (6, 1): ('triangle', 'black'), (6, 2): ('square', 'black'), (6, 3): ('circle', 'white'), (6, 4): ('triangle', 'black'), (6, 5): ('circle', 'white'), (6, 6): ('circle', 'white'), (6, 7): ('square', 'black'), (6, 8): ('triangle', 'white'), (7, 0): ('triangle', 'black'), (7, 1): ('square', 'black'), (7, 2): ('triangle', 'black'), (7, 3): ('circle', 'black'), (7, 4): ('square', 'black'), (7, 5): ('square', 'black'), (7, 6): ('triangle', 'white'), (7, 7): ('square', 'white'), (7, 8): ('triangle', 'white'), (8, 0): ('triangle', 'black'), (8, 1): ('square', 'white'), (8, 2): ('circle', 'white'), (8, 3): ('circle', 'white'), (8, 4): ('square', 'black'), (8, 5): ('square', 'black'), (8, 6): ('circle', 'black'), (8, 7): ('triangle', 'white'), (8, 8): ('square', 'black')}, {(0, 0): ('circle', 'black'), (0, 1): ('triangle', 'black'), (0, 2): ('triangle', 'black'), (0, 3): ('triangle', 'white'), (0, 4): ('square', 'white'), (0, 5): ('triangle', 'black'), (0, 6): ('square', 'black'), (0, 7): ('triangle', 'white'), (0, 8): ('square', 'white'), (1, 0): ('triangle', 'black'), (1, 1): ('square', 'white'), (1, 2): ('circle', 'white'), (1, 3): ('circle', 'white'), (1, 4): ('circle', 'white'), (1, 5): ('circle', 'white'), (1, 6): ('circle', 'white'), (1, 7): ('square', 'black'), (1, 8): ('triangle', 'white'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'black'), (2, 2): ('circle', 'black'), (2, 3): ('triangle', 'black'), (2, 4): ('triangle', 'black'), (2, 5): ('circle', 'white'), (2, 6): ('triangle', 'black'), (2, 7): ('square', 'white'), (2, 8): ('circle', 'black'), (3, 0): ('square', 'black'), (3, 1): ('circle', 'white'), (3, 2): ('triangle', 'white'), (3, 3): ('square', 'black'), (3, 4): ('square', 'white'), (3, 5): ('square', 'white'), (3, 6): ('square', 'white'), (3, 7): ('triangle', 'white'), (3, 8): ('triangle', 'black'), (4, 0): ('square', 'black'), (4, 1): ('triangle', 'white'), (4, 2): ('circle', 'white'), (4, 3): ('triangle', 'white'), (4, 4): ('circle', 'black'), (4, 5): ('circle', 'black'), (4, 6): ('circle', 'white'), (4, 7): ('square', 'white'), (4, 8): ('square', 'black'), (5, 0): ('square', 'black'), (5, 1): ('circle', 'black'), (5, 2): ('square', 'white'), (5, 3): ('square', 'black'), (5, 4): ('square', 'white'), (5, 5): ('triangle', 'white'), (5, 6): ('square', 'black'), (5, 7): ('triangle', 'white'), (5, 8): ('square', 'black'), (6, 0): ('square', 'white'), (6, 1): ('circle', 'black'), (6, 2): ('circle', 'black'), (6, 3): ('square', 'black'), (6, 4): ('square', 'white'), (6, 5): ('square', 'white'), (6, 6): ('triangle', 'white'), (6, 7): ('triangle', 'white'), (6, 8): ('circle', 'white'), (7, 0): ('circle', 'white'), (7, 1): ('circle', 'black'), (7, 2): ('circle', 'black'), (7, 3): ('square', 'white'), (7, 4): ('square', 'white'), (7, 5): ('triangle', 'black'), (7, 6): ('triangle', 'white'), (7, 7): ('square', 'black'), (7, 8): ('square', 'black'), (8, 0): ('circle', 'black'), (8, 1): ('triangle', 'black'), (8, 2): ('square', 'white'), (8, 3): ('square', 'white'), (8, 4): ('square', 'white'), (8, 5): ('circle', 'black'), (8, 6): ('circle', 'black'), (8, 7): ('triangle', 'black'), (8, 8): ('triangle', 'black')}, {(0, 0): ('square', 'white'), (0, 1): ('triangle', 'black'), (0, 2): ('square', 'white'), (0, 3): ('square', 'white'), (0, 4): ('triangle', 'white'), (0, 5): ('square', 'white'), (0, 6): ('triangle', 'white'), (0, 7): ('triangle', 'white'), (0, 8): ('triangle', 'black'), (1, 0): ('square', 'black'), (1, 1): ('circle', 'black'), (1, 2): ('triangle', 'black'), (1, 3): ('square', 'white'), (1, 4): ('square', 'white'), (1, 5): ('triangle', 'white'), (1, 6): ('triangle', 'black'), (1, 7): ('triangle', 'black'), (1, 8): ('square', 'white'), (2, 0): ('square', 'black'), (2, 1): ('circle', 'white'), (2, 2): ('triangle', 'white'), (2, 3): ('square', 'white'), (2, 4): ('circle', 'black'), (2, 5): ('triangle', 'white'), (2, 6): ('square', 'white'), (2, 7): ('triangle', 'white'), (2, 8): ('circle', 'black'), (3, 0): ('triangle', 'white'), (3, 1): ('circle', 'black'), (3, 2): ('circle', 'white'), (3, 3): ('circle', 'black'), (3, 4): ('circle', 'white'), (3, 5): ('circle', 'black'), (3, 6): ('square', 'white'), (3, 7): ('circle', 'black'), (3, 8): ('square', 'white'), (4, 0): ('triangle', 'white'), (4, 1): ('triangle', 'white'), (4, 2): ('triangle', 'black'), (4, 3): ('triangle', 'white'), (4, 4): ('circle', 'black'), (4, 5): ('triangle', 'white'), (4, 6): ('circle', 'black'), (4, 7): ('square', 'black'), (4, 8): ('circle', 'black'), (5, 0): ('circle', 'black'), (5, 1): ('square', 'white'), (5, 2): ('circle', 'white'), (5, 3): ('circle', 'white'), (5, 4): ('triangle', 'white'), (5, 5): ('triangle', 'white'), (5, 6): ('circle', 'white'), (5, 7): ('square', 'black'), (5, 8): ('triangle', 'black'), (6, 0): ('circle', 'black'), (6, 1): ('square', 'white'), (6, 2): ('circle', 'white'), (6, 3): ('square', 'black'), (6, 4): ('triangle', 'black'), (6, 5): ('triangle', 'white'), (6, 6): ('square', 'white'), (6, 7): ('triangle', 'black'), (6, 8): ('triangle', 'black'), (7, 0): ('triangle', 'black'), (7, 1): ('square', 'white'), (7, 2): ('triangle', 'white'), (7, 3): ('circle', 'black'), (7, 4): ('triangle', 'white'), (7, 5): ('triangle', 'white'), (7, 6): ('triangle', 'black'), (7, 7): ('triangle', 'black'), (7, 8): ('circle', 'white'), (8, 0): ('triangle', 'black'), (8, 1): ('circle', 'black'), (8, 2): ('triangle', 'white'), (8, 3): ('triangle', 'white'), (8, 4): ('circle', 'white'), (8, 5): ('square', 'black'), (8, 6): ('triangle', 'black'), (8, 7): ('square', 'black'), (8, 8): ('square', 'black')}]","(9, 9, 5)"
diff --git a/2D_DoYouSeeMe/visual_spatial/dataset_info.csv b/2D_DoYouSeeMe/visual_spatial/dataset_info.csv
new file mode 100644
index 0000000000000000000000000000000000000000..b3329d1c920bb9bf108192b64282226bcfb8ecb3
--- /dev/null
+++ b/2D_DoYouSeeMe/visual_spatial/dataset_info.csv
@@ -0,0 +1,807 @@
+filename,question,answer,sweep
+0.svg,"In grid 1, starting from the black triangle at position (row 2, column 3), how many white triangles are there down of it in the same column?",0,"(3, 3, 1)"
+0.svg,"In grid 1, starting from the black square at position (row 2, column 1), how many black squares are there right of it in the same row?",0,"(3, 3, 1)"
+0.svg,"In grid 1, starting from the black triangle at position (row 2, column 3), how many black objects are there down of it in the same column?",1,"(3, 3, 1)"
+0.svg,"In grid 1, starting from the black triangle at position (row 3, column 3), how many black objects are there left of it in the same row?",1,"(3, 3, 1)"
+0.svg,"In grid 1, starting from the white triangle at position (row 1, column 2), how many black squares are there left of it in the same row?",0,"(3, 3, 1)"
+1.svg,"In grid 1, starting from the white circle at position (row 1, column 1), how many white squares are there right of it in the same row?",1,"(3, 3, 1)"
+2.svg,"In grid 1, starting from the black circle at position (row 3, column 2), how many black objects are there right of it in the same row?",1,"(3, 3, 1)"
+2.svg,"In grid 1, starting from the black circle at position (row 3, column 2), how many black squares are there left of it in the same row?",0,"(3, 3, 1)"
+2.svg,"In grid 1, starting from the black triangle at position (row 2, column 2), how many white triangles are there down of it in the same column?",0,"(3, 3, 1)"
+2.svg,"In grid 1, starting from the black triangle at position (row 1, column 1), how many white objects are there down of it in the same column?",0,"(3, 3, 1)"
+3.svg,"In grid 1, starting from the white circle at position (row 3, column 1), how many black circles are there right of it in the same row?",0,"(3, 3, 1)"
+4.svg,"In grid 1, starting from the white circle at position (row 2, column 3), how many black circles are there down of it in the same column?",0,"(3, 3, 1)"
+5.svg,"In grid 1, starting from the white square at position (row 2, column 2), how many circles are there left of it in the same row?",0,"(3, 3, 1)"
+5.svg,"In grid 1, starting from the white square at position (row 3, column 1), how many squares are there up of it in the same column?",2,"(3, 3, 1)"
+5.svg,"In grid 1, starting from the white triangle at position (row 1, column 2), how many white objects are there down of it in the same column?",2,"(3, 3, 1)"
+6.svg,"In grid 1, starting from the white square at position (row 2, column 3), how many white circles are there down of it in the same column?",0,"(3, 3, 1)"
+6.svg,"In grid 1, starting from the white circle at position (row 2, column 1), how many white squares are there up of it in the same column?",0,"(3, 3, 1)"
+6.svg,"In grid 1, starting from the black square at position (row 1, column 2), how many white circles are there down of it in the same column?",0,"(3, 3, 1)"
+6.svg,"In grid 1, starting from the black square at position (row 1, column 3), how many black triangles are there down of it in the same column?",0,"(3, 3, 1)"
+6.svg,"In grid 1, starting from the white square at position (row 3, column 3), how many white objects are there left of it in the same row?",0,"(3, 3, 1)"
+7.svg,"In grid 1, starting from the white triangle at position (row 2, column 3), how many white circles are there up of it in the same column?",1,"(3, 3, 1)"
+7.svg,"In grid 1, starting from the black triangle at position (row 2, column 2), how many white circles are there up of it in the same column?",0,"(3, 3, 1)"
+8.svg,"In grid 1, starting from the white square at position (row 1, column 2), how many circles are there left of it in the same row?",0,"(3, 3, 1)"
+8.svg,"In grid 1, starting from the black square at position (row 2, column 1), how many white objects are there down of it in the same column?",0,"(3, 3, 1)"
+8.svg,"In grid 1, starting from the white square at position (row 1, column 1), how many white triangles are there down of it in the same column?",0,"(3, 3, 1)"
+8.svg,"In grid 1, starting from the black square at position (row 2, column 1), how many circles are there up of it in the same column?",0,"(3, 3, 1)"
+9.svg,"In grid 1, starting from the black triangle at position (row 3, column 1), how many white squares are there up of it in the same column?",0,"(3, 3, 1)"
+9.svg,"In grid 1, starting from the white circle at position (row 2, column 2), how many black triangles are there down of it in the same column?",0,"(3, 3, 1)"
+9.svg,"In grid 1, starting from the white circle at position (row 3, column 3), how many white objects are there left of it in the same row?",1,"(3, 3, 1)"
+9.svg,"In grid 1, starting from the white circle at position (row 2, column 2), how many white objects are there up of it in the same column?",1,"(3, 3, 1)"
+9.svg,"In grid 1, starting from the white square at position (row 2, column 3), how many white circles are there up of it in the same column?",0,"(3, 3, 1)"
+10.svg,"In grid 3, starting from the white square at position (row 2, column 2), how many black circles are there down of it in the same column?",0,"(3, 3, 3)"
+10.svg,"In grid 1, starting from the white triangle at position (row 3, column 1), how many black objects are there right of it in the same row?",1,"(3, 3, 3)"
+10.svg,"In grid 3, starting from the black triangle at position (row 3, column 1), how many black objects are there right of it in the same row?",0,"(3, 3, 3)"
+10.svg,"In grid 1, starting from the black triangle at position (row 3, column 2), how many circles are there right of it in the same row?",0,"(3, 3, 3)"
+10.svg,"In grid 2, starting from the black triangle at position (row 1, column 2), how many circles are there right of it in the same row?",1,"(3, 3, 3)"
+11.svg,"In grid 1, starting from the black square at position (row 2, column 2), how many black objects are there up of it in the same column?",1,"(3, 3, 3)"
+11.svg,"In grid 3, starting from the black triangle at position (row 2, column 3), how many black objects are there up of it in the same column?",0,"(3, 3, 3)"
+11.svg,"In grid 1, starting from the black triangle at position (row 1, column 2), how many black objects are there left of it in the same row?",0,"(3, 3, 3)"
+11.svg,"In grid 2, starting from the white triangle at position (row 3, column 2), how many white squares are there up of it in the same column?",1,"(3, 3, 3)"
+12.svg,"In grid 2, starting from the white square at position (row 2, column 3), how many black circles are there left of it in the same row?",1,"(3, 3, 3)"
+12.svg,"In grid 1, starting from the black square at position (row 3, column 1), how many circles are there right of it in the same row?",0,"(3, 3, 3)"
+12.svg,"In grid 1, starting from the white triangle at position (row 2, column 2), how many black triangles are there right of it in the same row?",0,"(3, 3, 3)"
+13.svg,"In grid 2, starting from the black triangle at position (row 2, column 2), how many black squares are there left of it in the same row?",0,"(3, 3, 3)"
+13.svg,"In grid 3, starting from the white circle at position (row 2, column 2), how many black objects are there left of it in the same row?",0,"(3, 3, 3)"
+13.svg,"In grid 1, starting from the black triangle at position (row 3, column 3), how many black objects are there left of it in the same row?",2,"(3, 3, 3)"
+13.svg,"In grid 3, starting from the white circle at position (row 1, column 2), how many squares are there right of it in the same row?",0,"(3, 3, 3)"
+14.svg,"In grid 3, starting from the black square at position (row 3, column 2), how many black squares are there left of it in the same row?",0,"(3, 3, 3)"
+14.svg,"In grid 2, starting from the black square at position (row 1, column 1), how many white triangles are there down of it in the same column?",0,"(3, 3, 3)"
+14.svg,"In grid 3, starting from the black square at position (row 1, column 1), how many circles are there right of it in the same row?",1,"(3, 3, 3)"
+14.svg,"In grid 3, starting from the black circle at position (row 3, column 1), how many white objects are there up of it in the same column?",1,"(3, 3, 3)"
+15.svg,"In grid 3, starting from the white triangle at position (row 2, column 1), how many black triangles are there down of it in the same column?",0,"(3, 3, 3)"
+16.svg,"In grid 2, starting from the black circle at position (row 2, column 3), how many white objects are there left of it in the same row?",1,"(3, 3, 3)"
+16.svg,"In grid 2, starting from the white circle at position (row 1, column 3), how many black squares are there down of it in the same column?",0,"(3, 3, 3)"
+16.svg,"In grid 3, starting from the white square at position (row 3, column 3), how many squares are there left of it in the same row?",1,"(3, 3, 3)"
+17.svg,"In grid 2, starting from the white circle at position (row 2, column 3), how many white circles are there down of it in the same column?",0,"(3, 3, 3)"
+17.svg,"In grid 3, starting from the black circle at position (row 1, column 3), how many black objects are there down of it in the same column?",1,"(3, 3, 3)"
+18.svg,"In grid 3, starting from the white triangle at position (row 1, column 2), how many squares are there right of it in the same row?",0,"(3, 3, 3)"
+18.svg,"In grid 3, starting from the white square at position (row 3, column 3), how many white squares are there up of it in the same column?",0,"(3, 3, 3)"
+18.svg,"In grid 2, starting from the black triangle at position (row 3, column 1), how many white objects are there right of it in the same row?",0,"(3, 3, 3)"
+18.svg,"In grid 1, starting from the black triangle at position (row 1, column 2), how many circles are there left of it in the same row?",1,"(3, 3, 3)"
+19.svg,"In grid 1, starting from the black circle at position (row 1, column 1), how many black objects are there down of it in the same column?",1,"(3, 3, 3)"
+19.svg,"In grid 1, starting from the black circle at position (row 1, column 2), how many white circles are there down of it in the same column?",0,"(3, 3, 3)"
+19.svg,"In grid 1, starting from the white circle at position (row 1, column 3), how many black objects are there down of it in the same column?",2,"(3, 3, 3)"
+20.svg,"In grid 2, starting from the white square at position (row 2, column 3), how many circles are there up of it in the same column?",0,"(3, 3, 5)"
+21.svg,"In grid 5, starting from the black triangle at position (row 2, column 2), how many white squares are there down of it in the same column?",0,"(3, 3, 5)"
+21.svg,"In grid 4, starting from the black triangle at position (row 1, column 3), how many circles are there down of it in the same column?",1,"(3, 3, 5)"
+21.svg,"In grid 1, starting from the black square at position (row 1, column 2), how many white squares are there right of it in the same row?",1,"(3, 3, 5)"
+21.svg,"In grid 2, starting from the black square at position (row 2, column 1), how many white objects are there up of it in the same column?",0,"(3, 3, 5)"
+22.svg,"In grid 1, starting from the black triangle at position (row 1, column 3), how many triangles are there down of it in the same column?",0,"(3, 3, 5)"
+22.svg,"In grid 4, starting from the white triangle at position (row 3, column 3), how many squares are there up of it in the same column?",1,"(3, 3, 5)"
+22.svg,"In grid 3, starting from the black square at position (row 1, column 2), how many white circles are there left of it in the same row?",1,"(3, 3, 5)"
+22.svg,"In grid 3, starting from the black square at position (row 1, column 3), how many black objects are there left of it in the same row?",1,"(3, 3, 5)"
+22.svg,"In grid 2, starting from the white circle at position (row 1, column 1), how many black objects are there right of it in the same row?",2,"(3, 3, 5)"
+23.svg,"In grid 4, starting from the black triangle at position (row 3, column 2), how many circles are there left of it in the same row?",0,"(3, 3, 5)"
+23.svg,"In grid 2, starting from the white circle at position (row 2, column 2), how many black triangles are there left of it in the same row?",0,"(3, 3, 5)"
+23.svg,"In grid 2, starting from the black circle at position (row 2, column 1), how many squares are there down of it in the same column?",1,"(3, 3, 5)"
+23.svg,"In grid 2, starting from the white circle at position (row 3, column 2), how many black circles are there right of it in the same row?",0,"(3, 3, 5)"
+23.svg,"In grid 5, starting from the white triangle at position (row 2, column 2), how many black objects are there right of it in the same row?",0,"(3, 3, 5)"
+24.svg,"In grid 3, starting from the white triangle at position (row 3, column 2), how many white objects are there up of it in the same column?",2,"(3, 3, 5)"
+24.svg,"In grid 2, starting from the black square at position (row 1, column 2), how many black squares are there down of it in the same column?",1,"(3, 3, 5)"
+25.svg,"In grid 2, starting from the black triangle at position (row 1, column 2), how many squares are there down of it in the same column?",1,"(3, 3, 5)"
+25.svg,"In grid 2, starting from the black square at position (row 2, column 1), how many white objects are there right of it in the same row?",1,"(3, 3, 5)"
+25.svg,"In grid 2, starting from the black square at position (row 2, column 1), how many black objects are there up of it in the same column?",0,"(3, 3, 5)"
+25.svg,"In grid 1, starting from the white square at position (row 2, column 1), how many white squares are there right of it in the same row?",1,"(3, 3, 5)"
+26.svg,"In grid 4, starting from the white triangle at position (row 2, column 2), how many circles are there right of it in the same row?",0,"(3, 3, 5)"
+26.svg,"In grid 1, starting from the black triangle at position (row 2, column 2), how many black objects are there down of it in the same column?",1,"(3, 3, 5)"
+26.svg,"In grid 1, starting from the white triangle at position (row 3, column 3), how many black objects are there up of it in the same column?",1,"(3, 3, 5)"
+26.svg,"In grid 4, starting from the white triangle at position (row 2, column 2), how many triangles are there up of it in the same column?",1,"(3, 3, 5)"
+27.svg,"In grid 2, starting from the black square at position (row 1, column 2), how many white circles are there left of it in the same row?",0,"(3, 3, 5)"
+27.svg,"In grid 4, starting from the black triangle at position (row 2, column 2), how many white objects are there right of it in the same row?",1,"(3, 3, 5)"
+27.svg,"In grid 2, starting from the black circle at position (row 2, column 3), how many black objects are there up of it in the same column?",0,"(3, 3, 5)"
+27.svg,"In grid 3, starting from the black circle at position (row 2, column 2), how many white objects are there right of it in the same row?",1,"(3, 3, 5)"
+27.svg,"In grid 5, starting from the black circle at position (row 2, column 3), how many black objects are there left of it in the same row?",1,"(3, 3, 5)"
+28.svg,"In grid 2, starting from the black triangle at position (row 2, column 3), how many black squares are there down of it in the same column?",0,"(3, 3, 5)"
+28.svg,"In grid 1, starting from the black square at position (row 3, column 1), how many squares are there up of it in the same column?",1,"(3, 3, 5)"
+28.svg,"In grid 3, starting from the black triangle at position (row 2, column 2), how many circles are there right of it in the same row?",0,"(3, 3, 5)"
+29.svg,"In grid 3, starting from the white square at position (row 1, column 1), how many white objects are there right of it in the same row?",0,"(3, 3, 5)"
+29.svg,"In grid 5, starting from the black triangle at position (row 1, column 2), how many black squares are there left of it in the same row?",0,"(3, 3, 5)"
+30.svg,"In grid 1, starting from the black triangle at position (row 1, column 4), how many squares are there left of it in the same row?",2,"(3, 6, 1)"
+30.svg,"In grid 1, starting from the white triangle at position (row 1, column 3), how many squares are there left of it in the same row?",2,"(3, 6, 1)"
+30.svg,"In grid 1, starting from the black triangle at position (row 2, column 3), how many white objects are there up of it in the same column?",1,"(3, 6, 1)"
+30.svg,"In grid 1, starting from the white triangle at position (row 1, column 3), how many black objects are there left of it in the same row?",2,"(3, 6, 1)"
+31.svg,"In grid 1, starting from the white square at position (row 3, column 3), how many black triangles are there left of it in the same row?",0,"(3, 6, 1)"
+31.svg,"In grid 1, starting from the white square at position (row 3, column 1), how many black objects are there up of it in the same column?",0,"(3, 6, 1)"
+32.svg,"In grid 1, starting from the white circle at position (row 3, column 3), how many circles are there left of it in the same row?",1,"(3, 6, 1)"
+33.svg,"In grid 1, starting from the black square at position (row 1, column 1), how many triangles are there right of it in the same row?",3,"(3, 6, 1)"
+33.svg,"In grid 1, starting from the black triangle at position (row 1, column 2), how many triangles are there right of it in the same row?",2,"(3, 6, 1)"
+33.svg,"In grid 1, starting from the black circle at position (row 3, column 6), how many black triangles are there up of it in the same column?",0,"(3, 6, 1)"
+33.svg,"In grid 1, starting from the black circle at position (row 2, column 1), how many triangles are there down of it in the same column?",0,"(3, 6, 1)"
+34.svg,"In grid 1, starting from the black square at position (row 1, column 5), how many white objects are there down of it in the same column?",2,"(3, 6, 1)"
+34.svg,"In grid 1, starting from the black circle at position (row 3, column 2), how many white objects are there right of it in the same row?",2,"(3, 6, 1)"
+34.svg,"In grid 1, starting from the white circle at position (row 2, column 5), how many circles are there right of it in the same row?",1,"(3, 6, 1)"
+34.svg,"In grid 1, starting from the white circle at position (row 2, column 5), how many white objects are there down of it in the same column?",1,"(3, 6, 1)"
+35.svg,"In grid 1, starting from the white circle at position (row 2, column 1), how many black triangles are there up of it in the same column?",0,"(3, 6, 1)"
+35.svg,"In grid 1, starting from the black triangle at position (row 2, column 5), how many black squares are there down of it in the same column?",1,"(3, 6, 1)"
+36.svg,"In grid 1, starting from the black square at position (row 1, column 3), how many black objects are there down of it in the same column?",2,"(3, 6, 1)"
+37.svg,"In grid 1, starting from the black triangle at position (row 3, column 4), how many white objects are there left of it in the same row?",0,"(3, 6, 1)"
+37.svg,"In grid 1, starting from the white triangle at position (row 3, column 5), how many white objects are there right of it in the same row?",1,"(3, 6, 1)"
+37.svg,"In grid 1, starting from the white triangle at position (row 1, column 5), how many squares are there down of it in the same column?",0,"(3, 6, 1)"
+37.svg,"In grid 1, starting from the white triangle at position (row 2, column 6), how many black objects are there down of it in the same column?",0,"(3, 6, 1)"
+37.svg,"In grid 1, starting from the white circle at position (row 1, column 1), how many white objects are there down of it in the same column?",0,"(3, 6, 1)"
+38.svg,"In grid 1, starting from the black triangle at position (row 3, column 5), how many triangles are there right of it in the same row?",1,"(3, 6, 1)"
+38.svg,"In grid 1, starting from the white square at position (row 1, column 5), how many white circles are there down of it in the same column?",0,"(3, 6, 1)"
+38.svg,"In grid 1, starting from the white square at position (row 1, column 5), how many white objects are there down of it in the same column?",0,"(3, 6, 1)"
+38.svg,"In grid 1, starting from the black triangle at position (row 3, column 6), how many triangles are there up of it in the same column?",0,"(3, 6, 1)"
+39.svg,"In grid 1, starting from the black square at position (row 3, column 6), how many black squares are there left of it in the same row?",2,"(3, 6, 1)"
+39.svg,"In grid 1, starting from the white triangle at position (row 3, column 4), how many black objects are there left of it in the same row?",2,"(3, 6, 1)"
+39.svg,"In grid 1, starting from the white square at position (row 1, column 5), how many black circles are there right of it in the same row?",0,"(3, 6, 1)"
+39.svg,"In grid 1, starting from the white triangle at position (row 2, column 2), how many black squares are there right of it in the same row?",0,"(3, 6, 1)"
+40.svg,"In grid 2, starting from the black square at position (row 2, column 4), how many black squares are there left of it in the same row?",0,"(3, 6, 3)"
+40.svg,"In grid 3, starting from the black circle at position (row 3, column 2), how many black triangles are there up of it in the same column?",0,"(3, 6, 3)"
+40.svg,"In grid 2, starting from the black triangle at position (row 2, column 3), how many white circles are there left of it in the same row?",0,"(3, 6, 3)"
+41.svg,"In grid 2, starting from the white circle at position (row 1, column 5), how many white triangles are there down of it in the same column?",1,"(3, 6, 3)"
+41.svg,"In grid 3, starting from the black square at position (row 2, column 3), how many white objects are there down of it in the same column?",0,"(3, 6, 3)"
+41.svg,"In grid 2, starting from the black triangle at position (row 2, column 1), how many black objects are there right of it in the same row?",3,"(3, 6, 3)"
+41.svg,"In grid 1, starting from the black triangle at position (row 3, column 5), how many squares are there left of it in the same row?",2,"(3, 6, 3)"
+42.svg,"In grid 1, starting from the black circle at position (row 3, column 3), how many white triangles are there up of it in the same column?",0,"(3, 6, 3)"
+42.svg,"In grid 2, starting from the white square at position (row 2, column 3), how many black squares are there up of it in the same column?",0,"(3, 6, 3)"
+42.svg,"In grid 3, starting from the white square at position (row 3, column 5), how many black circles are there up of it in the same column?",1,"(3, 6, 3)"
+42.svg,"In grid 1, starting from the black triangle at position (row 3, column 1), how many white objects are there up of it in the same column?",2,"(3, 6, 3)"
+43.svg,"In grid 3, starting from the black circle at position (row 1, column 3), how many black objects are there down of it in the same column?",2,"(3, 6, 3)"
+44.svg,"In grid 1, starting from the white triangle at position (row 2, column 2), how many black triangles are there down of it in the same column?",0,"(3, 6, 3)"
+45.svg,"In grid 3, starting from the black circle at position (row 3, column 1), how many circles are there up of it in the same column?",0,"(3, 6, 3)"
+46.svg,"In grid 3, starting from the white circle at position (row 1, column 5), how many squares are there right of it in the same row?",0,"(3, 6, 3)"
+46.svg,"In grid 2, starting from the white square at position (row 3, column 6), how many white objects are there left of it in the same row?",3,"(3, 6, 3)"
+47.svg,"In grid 1, starting from the black square at position (row 3, column 5), how many white objects are there right of it in the same row?",1,"(3, 6, 3)"
+47.svg,"In grid 2, starting from the black square at position (row 3, column 4), how many circles are there left of it in the same row?",1,"(3, 6, 3)"
+47.svg,"In grid 2, starting from the white square at position (row 2, column 1), how many triangles are there right of it in the same row?",1,"(3, 6, 3)"
+47.svg,"In grid 1, starting from the black triangle at position (row 3, column 2), how many black triangles are there right of it in the same row?",1,"(3, 6, 3)"
+48.svg,"In grid 3, starting from the black circle at position (row 2, column 4), how many triangles are there right of it in the same row?",0,"(3, 6, 3)"
+48.svg,"In grid 2, starting from the white square at position (row 2, column 5), how many white squares are there left of it in the same row?",0,"(3, 6, 3)"
+48.svg,"In grid 2, starting from the white triangle at position (row 2, column 2), how many white triangles are there up of it in the same column?",0,"(3, 6, 3)"
+49.svg,"In grid 1, starting from the white square at position (row 1, column 1), how many black triangles are there right of it in the same row?",1,"(3, 6, 3)"
+49.svg,"In grid 1, starting from the white square at position (row 3, column 5), how many white objects are there left of it in the same row?",1,"(3, 6, 3)"
+49.svg,"In grid 3, starting from the black circle at position (row 3, column 5), how many black squares are there left of it in the same row?",0,"(3, 6, 3)"
+49.svg,"In grid 3, starting from the black triangle at position (row 2, column 1), how many black objects are there right of it in the same row?",1,"(3, 6, 3)"
+50.svg,"In grid 5, starting from the black triangle at position (row 2, column 6), how many circles are there down of it in the same column?",0,"(3, 6, 5)"
+51.svg,"In grid 4, starting from the white square at position (row 3, column 3), how many black objects are there up of it in the same column?",0,"(3, 6, 5)"
+52.svg,"In grid 1, starting from the white square at position (row 3, column 4), how many circles are there up of it in the same column?",2,"(3, 6, 5)"
+52.svg,"In grid 3, starting from the white triangle at position (row 3, column 2), how many triangles are there up of it in the same column?",0,"(3, 6, 5)"
+52.svg,"In grid 5, starting from the white square at position (row 2, column 5), how many white objects are there up of it in the same column?",1,"(3, 6, 5)"
+53.svg,"In grid 2, starting from the white square at position (row 2, column 6), how many circles are there up of it in the same column?",1,"(3, 6, 5)"
+53.svg,"In grid 5, starting from the white circle at position (row 2, column 4), how many triangles are there up of it in the same column?",0,"(3, 6, 5)"
+53.svg,"In grid 4, starting from the white circle at position (row 2, column 6), how many white objects are there left of it in the same row?",2,"(3, 6, 5)"
+53.svg,"In grid 5, starting from the black square at position (row 3, column 6), how many circles are there left of it in the same row?",4,"(3, 6, 5)"
+53.svg,"In grid 5, starting from the black circle at position (row 3, column 4), how many white triangles are there left of it in the same row?",0,"(3, 6, 5)"
+54.svg,"In grid 3, starting from the white circle at position (row 2, column 5), how many white objects are there left of it in the same row?",1,"(3, 6, 5)"
+54.svg,"In grid 5, starting from the white square at position (row 1, column 5), how many circles are there down of it in the same column?",0,"(3, 6, 5)"
+55.svg,"In grid 4, starting from the white circle at position (row 2, column 1), how many black circles are there right of it in the same row?",0,"(3, 6, 5)"
+55.svg,"In grid 1, starting from the black square at position (row 2, column 4), how many white objects are there left of it in the same row?",1,"(3, 6, 5)"
+55.svg,"In grid 1, starting from the black triangle at position (row 1, column 5), how many white objects are there down of it in the same column?",0,"(3, 6, 5)"
+56.svg,"In grid 2, starting from the black circle at position (row 2, column 5), how many white squares are there right of it in the same row?",0,"(3, 6, 5)"
+56.svg,"In grid 2, starting from the black square at position (row 2, column 6), how many white triangles are there up of it in the same column?",0,"(3, 6, 5)"
+57.svg,"In grid 5, starting from the black square at position (row 2, column 5), how many circles are there up of it in the same column?",0,"(3, 6, 5)"
+57.svg,"In grid 5, starting from the black square at position (row 2, column 1), how many white triangles are there down of it in the same column?",0,"(3, 6, 5)"
+58.svg,"In grid 2, starting from the white triangle at position (row 3, column 2), how many triangles are there up of it in the same column?",1,"(3, 6, 5)"
+59.svg,"In grid 5, starting from the white circle at position (row 2, column 1), how many white objects are there down of it in the same column?",1,"(3, 6, 5)"
+59.svg,"In grid 2, starting from the white triangle at position (row 1, column 6), how many white squares are there left of it in the same row?",0,"(3, 6, 5)"
+60.svg,"In grid 1, starting from the white circle at position (row 2, column 4), how many white objects are there left of it in the same row?",2,"(3, 9, 1)"
+60.svg,"In grid 1, starting from the white circle at position (row 2, column 4), how many triangles are there right of it in the same row?",3,"(3, 9, 1)"
+60.svg,"In grid 1, starting from the white triangle at position (row 2, column 6), how many black squares are there left of it in the same row?",1,"(3, 9, 1)"
+60.svg,"In grid 1, starting from the white square at position (row 3, column 8), how many white objects are there up of it in the same column?",0,"(3, 9, 1)"
+61.svg,"In grid 1, starting from the white square at position (row 3, column 7), how many circles are there up of it in the same column?",0,"(3, 9, 1)"
+62.svg,"In grid 1, starting from the black circle at position (row 1, column 3), how many black objects are there down of it in the same column?",2,"(3, 9, 1)"
+63.svg,"In grid 1, starting from the black triangle at position (row 3, column 3), how many white triangles are there left of it in the same row?",0,"(3, 9, 1)"
+64.svg,"In grid 1, starting from the black triangle at position (row 1, column 7), how many black squares are there down of it in the same column?",0,"(3, 9, 1)"
+65.svg,"In grid 1, starting from the black square at position (row 2, column 6), how many black triangles are there right of it in the same row?",0,"(3, 9, 1)"
+65.svg,"In grid 1, starting from the white triangle at position (row 2, column 7), how many white circles are there right of it in the same row?",0,"(3, 9, 1)"
+66.svg,"In grid 1, starting from the white square at position (row 1, column 9), how many squares are there left of it in the same row?",4,"(3, 9, 1)"
+66.svg,"In grid 1, starting from the black circle at position (row 2, column 2), how many black squares are there down of it in the same column?",0,"(3, 9, 1)"
+66.svg,"In grid 1, starting from the black triangle at position (row 3, column 4), how many squares are there up of it in the same column?",1,"(3, 9, 1)"
+66.svg,"In grid 1, starting from the white square at position (row 2, column 1), how many black objects are there right of it in the same row?",6,"(3, 9, 1)"
+67.svg,"In grid 1, starting from the white triangle at position (row 2, column 6), how many circles are there down of it in the same column?",1,"(3, 9, 1)"
+67.svg,"In grid 1, starting from the black triangle at position (row 1, column 4), how many black objects are there down of it in the same column?",1,"(3, 9, 1)"
+68.svg,"In grid 1, starting from the white square at position (row 2, column 8), how many white circles are there down of it in the same column?",0,"(3, 9, 1)"
+68.svg,"In grid 1, starting from the white triangle at position (row 3, column 5), how many black objects are there up of it in the same column?",1,"(3, 9, 1)"
+69.svg,"In grid 1, starting from the white square at position (row 2, column 2), how many white circles are there right of it in the same row?",1,"(3, 9, 1)"
+69.svg,"In grid 1, starting from the white triangle at position (row 3, column 7), how many triangles are there left of it in the same row?",2,"(3, 9, 1)"
+69.svg,"In grid 1, starting from the black circle at position (row 1, column 6), how many white triangles are there down of it in the same column?",0,"(3, 9, 1)"
+69.svg,"In grid 1, starting from the black circle at position (row 1, column 7), how many triangles are there right of it in the same row?",0,"(3, 9, 1)"
+70.svg,"In grid 2, starting from the white triangle at position (row 1, column 1), how many black objects are there right of it in the same row?",5,"(3, 9, 3)"
+70.svg,"In grid 2, starting from the black square at position (row 3, column 3), how many white triangles are there up of it in the same column?",1,"(3, 9, 3)"
+70.svg,"In grid 2, starting from the white circle at position (row 2, column 5), how many white circles are there down of it in the same column?",0,"(3, 9, 3)"
+70.svg,"In grid 2, starting from the white square at position (row 3, column 9), how many black triangles are there up of it in the same column?",0,"(3, 9, 3)"
+70.svg,"In grid 3, starting from the white triangle at position (row 2, column 8), how many white objects are there right of it in the same row?",0,"(3, 9, 3)"
+71.svg,"In grid 2, starting from the white square at position (row 2, column 7), how many circles are there down of it in the same column?",1,"(3, 9, 3)"
+71.svg,"In grid 2, starting from the black circle at position (row 2, column 3), how many black objects are there right of it in the same row?",1,"(3, 9, 3)"
+71.svg,"In grid 1, starting from the white circle at position (row 1, column 4), how many white objects are there right of it in the same row?",3,"(3, 9, 3)"
+71.svg,"In grid 3, starting from the black circle at position (row 2, column 6), how many black objects are there right of it in the same row?",1,"(3, 9, 3)"
+72.svg,"In grid 2, starting from the white square at position (row 3, column 2), how many white circles are there right of it in the same row?",0,"(3, 9, 3)"
+72.svg,"In grid 3, starting from the black triangle at position (row 3, column 5), how many black circles are there up of it in the same column?",0,"(3, 9, 3)"
+73.svg,"In grid 1, starting from the white triangle at position (row 3, column 8), how many black objects are there right of it in the same row?",1,"(3, 9, 3)"
+73.svg,"In grid 3, starting from the white circle at position (row 1, column 4), how many black objects are there right of it in the same row?",2,"(3, 9, 3)"
+73.svg,"In grid 2, starting from the white circle at position (row 1, column 8), how many squares are there left of it in the same row?",0,"(3, 9, 3)"
+73.svg,"In grid 1, starting from the white square at position (row 2, column 1), how many black objects are there up of it in the same column?",0,"(3, 9, 3)"
+73.svg,"In grid 3, starting from the white circle at position (row 2, column 5), how many black objects are there right of it in the same row?",3,"(3, 9, 3)"
+74.svg,"In grid 3, starting from the black circle at position (row 1, column 4), how many white objects are there right of it in the same row?",4,"(3, 9, 3)"
+74.svg,"In grid 2, starting from the white triangle at position (row 2, column 7), how many black objects are there right of it in the same row?",1,"(3, 9, 3)"
+74.svg,"In grid 1, starting from the white triangle at position (row 2, column 9), how many triangles are there up of it in the same column?",0,"(3, 9, 3)"
+74.svg,"In grid 1, starting from the black square at position (row 2, column 3), how many white objects are there left of it in the same row?",1,"(3, 9, 3)"
+74.svg,"In grid 1, starting from the white triangle at position (row 2, column 5), how many circles are there up of it in the same column?",0,"(3, 9, 3)"
+75.svg,"In grid 1, starting from the white square at position (row 2, column 9), how many white squares are there down of it in the same column?",0,"(3, 9, 3)"
+76.svg,"In grid 2, starting from the black triangle at position (row 1, column 8), how many white objects are there right of it in the same row?",1,"(3, 9, 3)"
+76.svg,"In grid 3, starting from the black square at position (row 2, column 6), how many white circles are there left of it in the same row?",1,"(3, 9, 3)"
+76.svg,"In grid 1, starting from the white square at position (row 2, column 2), how many black objects are there down of it in the same column?",0,"(3, 9, 3)"
+76.svg,"In grid 3, starting from the black square at position (row 2, column 8), how many white triangles are there up of it in the same column?",1,"(3, 9, 3)"
+76.svg,"In grid 2, starting from the black circle at position (row 2, column 1), how many black objects are there right of it in the same row?",4,"(3, 9, 3)"
+77.svg,"In grid 3, starting from the black circle at position (row 3, column 3), how many black objects are there right of it in the same row?",5,"(3, 9, 3)"
+77.svg,"In grid 1, starting from the white circle at position (row 3, column 4), how many black squares are there right of it in the same row?",0,"(3, 9, 3)"
+77.svg,"In grid 1, starting from the black square at position (row 2, column 1), how many squares are there up of it in the same column?",0,"(3, 9, 3)"
+78.svg,"In grid 2, starting from the black square at position (row 3, column 6), how many triangles are there left of it in the same row?",2,"(3, 9, 3)"
+78.svg,"In grid 3, starting from the black square at position (row 2, column 2), how many black triangles are there up of it in the same column?",0,"(3, 9, 3)"
+78.svg,"In grid 1, starting from the black circle at position (row 2, column 1), how many black triangles are there right of it in the same row?",0,"(3, 9, 3)"
+78.svg,"In grid 3, starting from the black triangle at position (row 3, column 6), how many triangles are there right of it in the same row?",0,"(3, 9, 3)"
+79.svg,"In grid 3, starting from the white circle at position (row 1, column 7), how many white triangles are there left of it in the same row?",1,"(3, 9, 3)"
+79.svg,"In grid 1, starting from the black square at position (row 2, column 7), how many black triangles are there right of it in the same row?",0,"(3, 9, 3)"
+79.svg,"In grid 3, starting from the white triangle at position (row 3, column 6), how many black objects are there left of it in the same row?",2,"(3, 9, 3)"
+80.svg,"In grid 2, starting from the white triangle at position (row 3, column 8), how many triangles are there right of it in the same row?",1,"(3, 9, 5)"
+80.svg,"In grid 3, starting from the white square at position (row 2, column 4), how many white objects are there right of it in the same row?",3,"(3, 9, 5)"
+80.svg,"In grid 1, starting from the black square at position (row 3, column 8), how many squares are there left of it in the same row?",4,"(3, 9, 5)"
+80.svg,"In grid 2, starting from the white triangle at position (row 3, column 8), how many black objects are there right of it in the same row?",1,"(3, 9, 5)"
+80.svg,"In grid 2, starting from the black triangle at position (row 2, column 6), how many squares are there down of it in the same column?",0,"(3, 9, 5)"
+81.svg,"In grid 5, starting from the white square at position (row 1, column 9), how many white objects are there left of it in the same row?",1,"(3, 9, 5)"
+81.svg,"In grid 5, starting from the black triangle at position (row 2, column 9), how many black objects are there down of it in the same column?",0,"(3, 9, 5)"
+81.svg,"In grid 4, starting from the white square at position (row 3, column 4), how many triangles are there right of it in the same row?",1,"(3, 9, 5)"
+81.svg,"In grid 5, starting from the black circle at position (row 3, column 8), how many black objects are there left of it in the same row?",4,"(3, 9, 5)"
+82.svg,"In grid 4, starting from the white triangle at position (row 3, column 1), how many squares are there right of it in the same row?",5,"(3, 9, 5)"
+83.svg,"In grid 1, starting from the black square at position (row 2, column 4), how many white circles are there left of it in the same row?",0,"(3, 9, 5)"
+84.svg,"In grid 2, starting from the black square at position (row 2, column 5), how many white objects are there left of it in the same row?",3,"(3, 9, 5)"
+84.svg,"In grid 5, starting from the black circle at position (row 2, column 9), how many triangles are there up of it in the same column?",0,"(3, 9, 5)"
+84.svg,"In grid 2, starting from the white square at position (row 3, column 5), how many white squares are there up of it in the same column?",1,"(3, 9, 5)"
+84.svg,"In grid 1, starting from the white triangle at position (row 1, column 3), how many black circles are there left of it in the same row?",1,"(3, 9, 5)"
+85.svg,"In grid 5, starting from the white triangle at position (row 2, column 1), how many circles are there up of it in the same column?",0,"(3, 9, 5)"
+85.svg,"In grid 4, starting from the white triangle at position (row 3, column 9), how many black circles are there up of it in the same column?",0,"(3, 9, 5)"
+85.svg,"In grid 1, starting from the white circle at position (row 2, column 3), how many squares are there left of it in the same row?",1,"(3, 9, 5)"
+86.svg,"In grid 2, starting from the black triangle at position (row 2, column 6), how many black circles are there up of it in the same column?",0,"(3, 9, 5)"
+87.svg,"In grid 2, starting from the black triangle at position (row 3, column 6), how many black objects are there right of it in the same row?",1,"(3, 9, 5)"
+88.svg,"In grid 4, starting from the white square at position (row 1, column 2), how many black objects are there down of it in the same column?",2,"(3, 9, 5)"
+88.svg,"In grid 1, starting from the black square at position (row 2, column 6), how many squares are there up of it in the same column?",1,"(3, 9, 5)"
+89.svg,"In grid 2, starting from the black square at position (row 1, column 8), how many circles are there down of it in the same column?",1,"(3, 9, 5)"
+89.svg,"In grid 1, starting from the white triangle at position (row 2, column 2), how many circles are there left of it in the same row?",1,"(3, 9, 5)"
+89.svg,"In grid 4, starting from the white circle at position (row 3, column 2), how many black circles are there up of it in the same column?",0,"(3, 9, 5)"
+90.svg,"In grid 1, starting from the black triangle at position (row 1, column 2), how many black objects are there right of it in the same row?",1,"(6, 3, 1)"
+91.svg,"In grid 1, starting from the white triangle at position (row 6, column 2), how many squares are there left of it in the same row?",1,"(6, 3, 1)"
+91.svg,"In grid 1, starting from the white circle at position (row 4, column 1), how many triangles are there down of it in the same column?",1,"(6, 3, 1)"
+91.svg,"In grid 1, starting from the black circle at position (row 6, column 3), how many white objects are there left of it in the same row?",2,"(6, 3, 1)"
+91.svg,"In grid 1, starting from the black triangle at position (row 2, column 3), how many black triangles are there left of it in the same row?",1,"(6, 3, 1)"
+92.svg,"In grid 1, starting from the black circle at position (row 4, column 1), how many triangles are there down of it in the same column?",0,"(6, 3, 1)"
+92.svg,"In grid 1, starting from the white circle at position (row 2, column 2), how many squares are there right of it in the same row?",0,"(6, 3, 1)"
+93.svg,"In grid 1, starting from the white circle at position (row 6, column 2), how many white objects are there left of it in the same row?",0,"(6, 3, 1)"
+94.svg,"In grid 1, starting from the white triangle at position (row 2, column 2), how many triangles are there down of it in the same column?",1,"(6, 3, 1)"
+94.svg,"In grid 1, starting from the black circle at position (row 3, column 3), how many black objects are there left of it in the same row?",1,"(6, 3, 1)"
+95.svg,"In grid 1, starting from the white triangle at position (row 1, column 1), how many triangles are there right of it in the same row?",0,"(6, 3, 1)"
+95.svg,"In grid 1, starting from the white circle at position (row 5, column 3), how many black objects are there left of it in the same row?",1,"(6, 3, 1)"
+95.svg,"In grid 1, starting from the black triangle at position (row 3, column 2), how many white objects are there left of it in the same row?",0,"(6, 3, 1)"
+95.svg,"In grid 1, starting from the white circle at position (row 5, column 3), how many black circles are there up of it in the same column?",0,"(6, 3, 1)"
+96.svg,"In grid 1, starting from the black triangle at position (row 3, column 1), how many triangles are there up of it in the same column?",1,"(6, 3, 1)"
+96.svg,"In grid 1, starting from the black circle at position (row 4, column 1), how many white objects are there up of it in the same column?",1,"(6, 3, 1)"
+97.svg,"In grid 1, starting from the black square at position (row 4, column 2), how many black objects are there right of it in the same row?",0,"(6, 3, 1)"
+98.svg,"In grid 1, starting from the black circle at position (row 4, column 1), how many black squares are there up of it in the same column?",0,"(6, 3, 1)"
+98.svg,"In grid 1, starting from the black triangle at position (row 5, column 1), how many black objects are there down of it in the same column?",0,"(6, 3, 1)"
+98.svg,"In grid 1, starting from the black circle at position (row 4, column 1), how many triangles are there right of it in the same row?",2,"(6, 3, 1)"
+98.svg,"In grid 1, starting from the black triangle at position (row 2, column 1), how many circles are there down of it in the same column?",2,"(6, 3, 1)"
+99.svg,"In grid 1, starting from the white circle at position (row 5, column 3), how many black objects are there down of it in the same column?",1,"(6, 3, 1)"
+99.svg,"In grid 1, starting from the black circle at position (row 4, column 3), how many squares are there down of it in the same column?",0,"(6, 3, 1)"
+99.svg,"In grid 1, starting from the black circle at position (row 6, column 3), how many black triangles are there left of it in the same row?",1,"(6, 3, 1)"
+99.svg,"In grid 1, starting from the black triangle at position (row 6, column 2), how many white objects are there right of it in the same row?",0,"(6, 3, 1)"
+100.svg,"In grid 3, starting from the black circle at position (row 4, column 2), how many white triangles are there left of it in the same row?",0,"(6, 3, 3)"
+100.svg,"In grid 3, starting from the black circle at position (row 5, column 2), how many white circles are there up of it in the same column?",0,"(6, 3, 3)"
+101.svg,"In grid 1, starting from the black triangle at position (row 1, column 3), how many white triangles are there left of it in the same row?",0,"(6, 3, 3)"
+102.svg,"In grid 3, starting from the white circle at position (row 1, column 1), how many white objects are there down of it in the same column?",2,"(6, 3, 3)"
+103.svg,"In grid 1, starting from the black triangle at position (row 2, column 1), how many black squares are there down of it in the same column?",1,"(6, 3, 3)"
+103.svg,"In grid 1, starting from the black square at position (row 6, column 1), how many black objects are there right of it in the same row?",1,"(6, 3, 3)"
+103.svg,"In grid 1, starting from the black circle at position (row 1, column 1), how many circles are there right of it in the same row?",2,"(6, 3, 3)"
+104.svg,"In grid 1, starting from the black triangle at position (row 2, column 2), how many white objects are there left of it in the same row?",0,"(6, 3, 3)"
+104.svg,"In grid 3, starting from the black square at position (row 4, column 2), how many triangles are there left of it in the same row?",0,"(6, 3, 3)"
+104.svg,"In grid 1, starting from the black square at position (row 2, column 1), how many circles are there up of it in the same column?",1,"(6, 3, 3)"
+104.svg,"In grid 1, starting from the white square at position (row 3, column 1), how many white objects are there up of it in the same column?",1,"(6, 3, 3)"
+104.svg,"In grid 2, starting from the white square at position (row 4, column 2), how many circles are there left of it in the same row?",0,"(6, 3, 3)"
+105.svg,"In grid 1, starting from the white circle at position (row 5, column 1), how many white objects are there right of it in the same row?",2,"(6, 3, 3)"
+105.svg,"In grid 2, starting from the black triangle at position (row 3, column 2), how many squares are there up of it in the same column?",1,"(6, 3, 3)"
+105.svg,"In grid 1, starting from the black circle at position (row 4, column 2), how many black triangles are there left of it in the same row?",0,"(6, 3, 3)"
+106.svg,"In grid 1, starting from the black square at position (row 2, column 1), how many triangles are there up of it in the same column?",1,"(6, 3, 3)"
+107.svg,"In grid 1, starting from the black square at position (row 1, column 1), how many white triangles are there right of it in the same row?",0,"(6, 3, 3)"
+107.svg,"In grid 3, starting from the white square at position (row 4, column 2), how many squares are there down of it in the same column?",1,"(6, 3, 3)"
+108.svg,"In grid 1, starting from the white square at position (row 4, column 2), how many triangles are there left of it in the same row?",0,"(6, 3, 3)"
+109.svg,"In grid 3, starting from the black square at position (row 5, column 1), how many black circles are there up of it in the same column?",1,"(6, 3, 3)"
+109.svg,"In grid 2, starting from the black triangle at position (row 5, column 2), how many squares are there down of it in the same column?",1,"(6, 3, 3)"
+110.svg,"In grid 1, starting from the white square at position (row 2, column 2), how many triangles are there right of it in the same row?",0,"(6, 3, 5)"
+111.svg,"In grid 4, starting from the black square at position (row 1, column 1), how many circles are there right of it in the same row?",1,"(6, 3, 5)"
+111.svg,"In grid 5, starting from the white circle at position (row 2, column 2), how many triangles are there left of it in the same row?",1,"(6, 3, 5)"
+111.svg,"In grid 2, starting from the black circle at position (row 5, column 3), how many white objects are there left of it in the same row?",2,"(6, 3, 5)"
+111.svg,"In grid 2, starting from the white triangle at position (row 1, column 1), how many black triangles are there right of it in the same row?",0,"(6, 3, 5)"
+112.svg,"In grid 5, starting from the white triangle at position (row 1, column 1), how many black objects are there down of it in the same column?",3,"(6, 3, 5)"
+113.svg,"In grid 2, starting from the white circle at position (row 3, column 3), how many white objects are there down of it in the same column?",1,"(6, 3, 5)"
+113.svg,"In grid 5, starting from the black square at position (row 4, column 1), how many black circles are there up of it in the same column?",0,"(6, 3, 5)"
+113.svg,"In grid 1, starting from the white circle at position (row 6, column 2), how many squares are there left of it in the same row?",1,"(6, 3, 5)"
+114.svg,"In grid 1, starting from the white circle at position (row 3, column 2), how many triangles are there right of it in the same row?",0,"(6, 3, 5)"
+114.svg,"In grid 3, starting from the white triangle at position (row 2, column 2), how many white objects are there left of it in the same row?",0,"(6, 3, 5)"
+114.svg,"In grid 2, starting from the black triangle at position (row 5, column 2), how many circles are there right of it in the same row?",0,"(6, 3, 5)"
+114.svg,"In grid 4, starting from the white square at position (row 5, column 1), how many black objects are there down of it in the same column?",0,"(6, 3, 5)"
+115.svg,"In grid 1, starting from the black square at position (row 4, column 1), how many black squares are there right of it in the same row?",1,"(6, 3, 5)"
+116.svg,"In grid 3, starting from the black triangle at position (row 1, column 3), how many white objects are there left of it in the same row?",1,"(6, 3, 5)"
+116.svg,"In grid 3, starting from the white circle at position (row 6, column 1), how many circles are there up of it in the same column?",3,"(6, 3, 5)"
+117.svg,"In grid 4, starting from the white square at position (row 4, column 3), how many white squares are there left of it in the same row?",0,"(6, 3, 5)"
+117.svg,"In grid 2, starting from the black circle at position (row 1, column 1), how many white objects are there right of it in the same row?",1,"(6, 3, 5)"
+117.svg,"In grid 2, starting from the white circle at position (row 6, column 1), how many white circles are there up of it in the same column?",0,"(6, 3, 5)"
+117.svg,"In grid 5, starting from the white triangle at position (row 3, column 2), how many triangles are there left of it in the same row?",1,"(6, 3, 5)"
+118.svg,"In grid 5, starting from the black triangle at position (row 3, column 1), how many squares are there right of it in the same row?",1,"(6, 3, 5)"
+118.svg,"In grid 5, starting from the white triangle at position (row 4, column 2), how many black triangles are there left of it in the same row?",0,"(6, 3, 5)"
+118.svg,"In grid 1, starting from the black circle at position (row 2, column 3), how many squares are there left of it in the same row?",1,"(6, 3, 5)"
+118.svg,"In grid 3, starting from the white square at position (row 2, column 2), how many squares are there left of it in the same row?",0,"(6, 3, 5)"
+119.svg,"In grid 5, starting from the black square at position (row 2, column 3), how many triangles are there left of it in the same row?",0,"(6, 3, 5)"
+119.svg,"In grid 5, starting from the black square at position (row 1, column 2), how many black objects are there right of it in the same row?",1,"(6, 3, 5)"
+119.svg,"In grid 4, starting from the white circle at position (row 5, column 1), how many triangles are there right of it in the same row?",0,"(6, 3, 5)"
+120.svg,"In grid 1, starting from the black triangle at position (row 2, column 1), how many white circles are there up of it in the same column?",1,"(6, 6, 1)"
+120.svg,"In grid 1, starting from the black square at position (row 3, column 4), how many black objects are there right of it in the same row?",2,"(6, 6, 1)"
+120.svg,"In grid 1, starting from the black triangle at position (row 3, column 3), how many triangles are there left of it in the same row?",1,"(6, 6, 1)"
+120.svg,"In grid 1, starting from the white triangle at position (row 1, column 4), how many black triangles are there left of it in the same row?",1,"(6, 6, 1)"
+121.svg,"In grid 1, starting from the white circle at position (row 4, column 3), how many white objects are there down of it in the same column?",2,"(6, 6, 1)"
+121.svg,"In grid 1, starting from the black triangle at position (row 6, column 5), how many triangles are there left of it in the same row?",0,"(6, 6, 1)"
+121.svg,"In grid 1, starting from the black triangle at position (row 3, column 5), how many black squares are there left of it in the same row?",0,"(6, 6, 1)"
+122.svg,"In grid 1, starting from the white circle at position (row 4, column 4), how many black objects are there right of it in the same row?",2,"(6, 6, 1)"
+122.svg,"In grid 1, starting from the black circle at position (row 6, column 2), how many white objects are there left of it in the same row?",1,"(6, 6, 1)"
+122.svg,"In grid 1, starting from the white circle at position (row 6, column 5), how many black squares are there left of it in the same row?",1,"(6, 6, 1)"
+122.svg,"In grid 1, starting from the white square at position (row 3, column 3), how many circles are there right of it in the same row?",1,"(6, 6, 1)"
+122.svg,"In grid 1, starting from the white circle at position (row 3, column 1), how many white objects are there up of it in the same column?",0,"(6, 6, 1)"
+123.svg,"In grid 1, starting from the white circle at position (row 5, column 6), how many squares are there up of it in the same column?",2,"(6, 6, 1)"
+123.svg,"In grid 1, starting from the black circle at position (row 2, column 5), how many black squares are there down of it in the same column?",1,"(6, 6, 1)"
+123.svg,"In grid 1, starting from the black triangle at position (row 5, column 3), how many black circles are there up of it in the same column?",0,"(6, 6, 1)"
+124.svg,"In grid 1, starting from the white triangle at position (row 5, column 3), how many black objects are there right of it in the same row?",1,"(6, 6, 1)"
+124.svg,"In grid 1, starting from the black circle at position (row 6, column 2), how many black triangles are there left of it in the same row?",0,"(6, 6, 1)"
+124.svg,"In grid 1, starting from the white square at position (row 3, column 3), how many white objects are there up of it in the same column?",2,"(6, 6, 1)"
+125.svg,"In grid 1, starting from the white triangle at position (row 1, column 6), how many black triangles are there left of it in the same row?",0,"(6, 6, 1)"
+126.svg,"In grid 1, starting from the black square at position (row 6, column 4), how many triangles are there up of it in the same column?",0,"(6, 6, 1)"
+126.svg,"In grid 1, starting from the black square at position (row 6, column 3), how many black squares are there left of it in the same row?",0,"(6, 6, 1)"
+126.svg,"In grid 1, starting from the black circle at position (row 2, column 5), how many black objects are there right of it in the same row?",0,"(6, 6, 1)"
+126.svg,"In grid 1, starting from the white square at position (row 2, column 4), how many black objects are there up of it in the same column?",0,"(6, 6, 1)"
+126.svg,"In grid 1, starting from the white triangle at position (row 3, column 2), how many black squares are there right of it in the same row?",1,"(6, 6, 1)"
+127.svg,"In grid 1, starting from the black circle at position (row 3, column 3), how many black circles are there down of it in the same column?",0,"(6, 6, 1)"
+127.svg,"In grid 1, starting from the white circle at position (row 5, column 5), how many squares are there left of it in the same row?",1,"(6, 6, 1)"
+127.svg,"In grid 1, starting from the black square at position (row 3, column 2), how many black squares are there left of it in the same row?",0,"(6, 6, 1)"
+128.svg,"In grid 1, starting from the white triangle at position (row 5, column 3), how many triangles are there right of it in the same row?",2,"(6, 6, 1)"
+128.svg,"In grid 1, starting from the black triangle at position (row 6, column 5), how many squares are there right of it in the same row?",1,"(6, 6, 1)"
+129.svg,"In grid 1, starting from the black square at position (row 6, column 5), how many circles are there left of it in the same row?",3,"(6, 6, 1)"
+129.svg,"In grid 1, starting from the black triangle at position (row 3, column 5), how many white circles are there up of it in the same column?",0,"(6, 6, 1)"
+129.svg,"In grid 1, starting from the black circle at position (row 5, column 2), how many circles are there left of it in the same row?",0,"(6, 6, 1)"
+129.svg,"In grid 1, starting from the black square at position (row 2, column 4), how many white squares are there right of it in the same row?",0,"(6, 6, 1)"
+129.svg,"In grid 1, starting from the black circle at position (row 2, column 3), how many circles are there up of it in the same column?",0,"(6, 6, 1)"
+130.svg,"In grid 1, starting from the black square at position (row 4, column 6), how many black objects are there left of it in the same row?",3,"(6, 6, 3)"
+131.svg,"In grid 3, starting from the black square at position (row 4, column 5), how many black circles are there up of it in the same column?",0,"(6, 6, 3)"
+131.svg,"In grid 2, starting from the white square at position (row 5, column 2), how many white objects are there left of it in the same row?",1,"(6, 6, 3)"
+131.svg,"In grid 3, starting from the white square at position (row 4, column 2), how many black squares are there left of it in the same row?",0,"(6, 6, 3)"
+131.svg,"In grid 1, starting from the black triangle at position (row 2, column 5), how many black triangles are there left of it in the same row?",0,"(6, 6, 3)"
+132.svg,"In grid 3, starting from the black triangle at position (row 6, column 1), how many black triangles are there right of it in the same row?",1,"(6, 6, 3)"
+132.svg,"In grid 2, starting from the white triangle at position (row 3, column 1), how many triangles are there down of it in the same column?",3,"(6, 6, 3)"
+132.svg,"In grid 1, starting from the white circle at position (row 5, column 4), how many black squares are there left of it in the same row?",0,"(6, 6, 3)"
+132.svg,"In grid 2, starting from the white triangle at position (row 6, column 2), how many squares are there right of it in the same row?",1,"(6, 6, 3)"
+133.svg,"In grid 3, starting from the white square at position (row 3, column 3), how many white squares are there up of it in the same column?",1,"(6, 6, 3)"
+133.svg,"In grid 2, starting from the white triangle at position (row 5, column 5), how many white squares are there down of it in the same column?",0,"(6, 6, 3)"
+133.svg,"In grid 2, starting from the white square at position (row 1, column 1), how many black objects are there down of it in the same column?",3,"(6, 6, 3)"
+134.svg,"In grid 1, starting from the black triangle at position (row 5, column 1), how many white triangles are there down of it in the same column?",0,"(6, 6, 3)"
+134.svg,"In grid 3, starting from the black square at position (row 2, column 3), how many squares are there up of it in the same column?",0,"(6, 6, 3)"
+134.svg,"In grid 2, starting from the white triangle at position (row 3, column 3), how many white squares are there up of it in the same column?",0,"(6, 6, 3)"
+134.svg,"In grid 3, starting from the black triangle at position (row 4, column 4), how many black squares are there left of it in the same row?",0,"(6, 6, 3)"
+135.svg,"In grid 2, starting from the white triangle at position (row 5, column 4), how many white objects are there right of it in the same row?",0,"(6, 6, 3)"
+135.svg,"In grid 3, starting from the black triangle at position (row 3, column 2), how many triangles are there up of it in the same column?",2,"(6, 6, 3)"
+135.svg,"In grid 1, starting from the white triangle at position (row 6, column 3), how many black objects are there left of it in the same row?",0,"(6, 6, 3)"
+135.svg,"In grid 2, starting from the black circle at position (row 3, column 1), how many triangles are there right of it in the same row?",2,"(6, 6, 3)"
+136.svg,"In grid 1, starting from the white circle at position (row 1, column 2), how many circles are there down of it in the same column?",2,"(6, 6, 3)"
+136.svg,"In grid 3, starting from the white triangle at position (row 2, column 3), how many white triangles are there right of it in the same row?",0,"(6, 6, 3)"
+137.svg,"In grid 3, starting from the black triangle at position (row 6, column 4), how many circles are there up of it in the same column?",2,"(6, 6, 3)"
+137.svg,"In grid 3, starting from the white square at position (row 5, column 4), how many circles are there left of it in the same row?",0,"(6, 6, 3)"
+137.svg,"In grid 1, starting from the white circle at position (row 6, column 2), how many white circles are there up of it in the same column?",0,"(6, 6, 3)"
+138.svg,"In grid 2, starting from the white square at position (row 1, column 2), how many black squares are there left of it in the same row?",0,"(6, 6, 3)"
+138.svg,"In grid 3, starting from the white triangle at position (row 2, column 5), how many white objects are there left of it in the same row?",4,"(6, 6, 3)"
+138.svg,"In grid 1, starting from the white triangle at position (row 1, column 6), how many squares are there left of it in the same row?",1,"(6, 6, 3)"
+138.svg,"In grid 2, starting from the white circle at position (row 6, column 3), how many white objects are there right of it in the same row?",0,"(6, 6, 3)"
+138.svg,"In grid 2, starting from the black circle at position (row 2, column 3), how many triangles are there down of it in the same column?",0,"(6, 6, 3)"
+139.svg,"In grid 2, starting from the white circle at position (row 2, column 4), how many triangles are there up of it in the same column?",1,"(6, 6, 3)"
+139.svg,"In grid 1, starting from the black square at position (row 1, column 5), how many black triangles are there down of it in the same column?",0,"(6, 6, 3)"
+139.svg,"In grid 2, starting from the white circle at position (row 5, column 4), how many black objects are there right of it in the same row?",1,"(6, 6, 3)"
+139.svg,"In grid 1, starting from the white square at position (row 2, column 3), how many black objects are there right of it in the same row?",1,"(6, 6, 3)"
+139.svg,"In grid 2, starting from the black circle at position (row 4, column 4), how many white triangles are there left of it in the same row?",0,"(6, 6, 3)"
+140.svg,"In grid 5, starting from the white circle at position (row 5, column 2), how many black objects are there down of it in the same column?",1,"(6, 6, 5)"
+140.svg,"In grid 5, starting from the white circle at position (row 4, column 3), how many circles are there right of it in the same row?",1,"(6, 6, 5)"
+140.svg,"In grid 1, starting from the white triangle at position (row 4, column 5), how many white objects are there down of it in the same column?",0,"(6, 6, 5)"
+140.svg,"In grid 2, starting from the white triangle at position (row 4, column 1), how many black circles are there up of it in the same column?",0,"(6, 6, 5)"
+141.svg,"In grid 4, starting from the white square at position (row 5, column 3), how many squares are there left of it in the same row?",0,"(6, 6, 5)"
+142.svg,"In grid 4, starting from the white triangle at position (row 1, column 3), how many black circles are there down of it in the same column?",0,"(6, 6, 5)"
+142.svg,"In grid 3, starting from the white circle at position (row 3, column 3), how many circles are there right of it in the same row?",1,"(6, 6, 5)"
+142.svg,"In grid 4, starting from the black triangle at position (row 1, column 6), how many triangles are there left of it in the same row?",3,"(6, 6, 5)"
+142.svg,"In grid 2, starting from the white triangle at position (row 6, column 6), how many white triangles are there up of it in the same column?",0,"(6, 6, 5)"
+142.svg,"In grid 1, starting from the black circle at position (row 3, column 3), how many black circles are there down of it in the same column?",0,"(6, 6, 5)"
+143.svg,"In grid 2, starting from the black triangle at position (row 5, column 6), how many circles are there up of it in the same column?",1,"(6, 6, 5)"
+144.svg,"In grid 3, starting from the black triangle at position (row 2, column 3), how many white objects are there right of it in the same row?",3,"(6, 6, 5)"
+144.svg,"In grid 4, starting from the white triangle at position (row 3, column 6), how many triangles are there up of it in the same column?",0,"(6, 6, 5)"
+144.svg,"In grid 5, starting from the white circle at position (row 4, column 3), how many black squares are there down of it in the same column?",1,"(6, 6, 5)"
+145.svg,"In grid 1, starting from the white circle at position (row 3, column 3), how many white circles are there right of it in the same row?",0,"(6, 6, 5)"
+145.svg,"In grid 5, starting from the black circle at position (row 6, column 4), how many white objects are there up of it in the same column?",1,"(6, 6, 5)"
+145.svg,"In grid 4, starting from the black triangle at position (row 4, column 1), how many triangles are there right of it in the same row?",2,"(6, 6, 5)"
+145.svg,"In grid 2, starting from the black triangle at position (row 4, column 3), how many circles are there up of it in the same column?",0,"(6, 6, 5)"
+146.svg,"In grid 5, starting from the white square at position (row 1, column 2), how many black circles are there down of it in the same column?",0,"(6, 6, 5)"
+146.svg,"In grid 3, starting from the black square at position (row 4, column 3), how many white circles are there down of it in the same column?",1,"(6, 6, 5)"
+146.svg,"In grid 2, starting from the white circle at position (row 3, column 1), how many white objects are there up of it in the same column?",2,"(6, 6, 5)"
+147.svg,"In grid 3, starting from the black triangle at position (row 4, column 3), how many triangles are there right of it in the same row?",0,"(6, 6, 5)"
+147.svg,"In grid 4, starting from the white circle at position (row 2, column 4), how many squares are there left of it in the same row?",1,"(6, 6, 5)"
+148.svg,"In grid 1, starting from the black circle at position (row 3, column 4), how many white objects are there right of it in the same row?",2,"(6, 6, 5)"
+148.svg,"In grid 5, starting from the white triangle at position (row 4, column 2), how many black objects are there down of it in the same column?",1,"(6, 6, 5)"
+148.svg,"In grid 4, starting from the white circle at position (row 4, column 2), how many black objects are there left of it in the same row?",0,"(6, 6, 5)"
+148.svg,"In grid 1, starting from the black circle at position (row 1, column 5), how many black objects are there right of it in the same row?",0,"(6, 6, 5)"
+148.svg,"In grid 1, starting from the white triangle at position (row 4, column 6), how many white objects are there up of it in the same column?",2,"(6, 6, 5)"
+149.svg,"In grid 5, starting from the black triangle at position (row 3, column 2), how many white circles are there right of it in the same row?",0,"(6, 6, 5)"
+149.svg,"In grid 1, starting from the black circle at position (row 1, column 6), how many black triangles are there down of it in the same column?",1,"(6, 6, 5)"
+149.svg,"In grid 5, starting from the black circle at position (row 1, column 2), how many triangles are there right of it in the same row?",1,"(6, 6, 5)"
+149.svg,"In grid 5, starting from the white circle at position (row 5, column 4), how many white objects are there left of it in the same row?",2,"(6, 6, 5)"
+150.svg,"In grid 1, starting from the black square at position (row 3, column 3), how many circles are there up of it in the same column?",2,"(6, 9, 1)"
+150.svg,"In grid 1, starting from the white triangle at position (row 3, column 5), how many black objects are there left of it in the same row?",2,"(6, 9, 1)"
+150.svg,"In grid 1, starting from the black square at position (row 3, column 3), how many black objects are there left of it in the same row?",1,"(6, 9, 1)"
+150.svg,"In grid 1, starting from the black square at position (row 3, column 9), how many white squares are there down of it in the same column?",0,"(6, 9, 1)"
+151.svg,"In grid 1, starting from the white circle at position (row 2, column 5), how many circles are there up of it in the same column?",0,"(6, 9, 1)"
+151.svg,"In grid 1, starting from the white square at position (row 1, column 5), how many white triangles are there left of it in the same row?",1,"(6, 9, 1)"
+151.svg,"In grid 1, starting from the white circle at position (row 2, column 8), how many white objects are there left of it in the same row?",3,"(6, 9, 1)"
+151.svg,"In grid 1, starting from the black circle at position (row 1, column 1), how many circles are there right of it in the same row?",3,"(6, 9, 1)"
+151.svg,"In grid 1, starting from the black square at position (row 3, column 7), how many white triangles are there right of it in the same row?",1,"(6, 9, 1)"
+152.svg,"In grid 1, starting from the black square at position (row 6, column 9), how many circles are there up of it in the same column?",1,"(6, 9, 1)"
+152.svg,"In grid 1, starting from the black square at position (row 6, column 3), how many black objects are there right of it in the same row?",4,"(6, 9, 1)"
+153.svg,"In grid 1, starting from the white triangle at position (row 4, column 1), how many black squares are there down of it in the same column?",0,"(6, 9, 1)"
+153.svg,"In grid 1, starting from the black triangle at position (row 5, column 1), how many black objects are there down of it in the same column?",0,"(6, 9, 1)"
+153.svg,"In grid 1, starting from the black circle at position (row 4, column 3), how many black circles are there right of it in the same row?",1,"(6, 9, 1)"
+153.svg,"In grid 1, starting from the white triangle at position (row 4, column 1), how many white circles are there up of it in the same column?",0,"(6, 9, 1)"
+154.svg,"In grid 1, starting from the black circle at position (row 6, column 5), how many black triangles are there right of it in the same row?",1,"(6, 9, 1)"
+154.svg,"In grid 1, starting from the black circle at position (row 4, column 6), how many white objects are there down of it in the same column?",1,"(6, 9, 1)"
+155.svg,"In grid 1, starting from the black square at position (row 6, column 6), how many black objects are there right of it in the same row?",2,"(6, 9, 1)"
+155.svg,"In grid 1, starting from the black circle at position (row 2, column 2), how many white objects are there up of it in the same column?",0,"(6, 9, 1)"
+155.svg,"In grid 1, starting from the white square at position (row 4, column 9), how many black objects are there down of it in the same column?",2,"(6, 9, 1)"
+155.svg,"In grid 1, starting from the white circle at position (row 3, column 7), how many black triangles are there down of it in the same column?",0,"(6, 9, 1)"
+155.svg,"In grid 1, starting from the black triangle at position (row 1, column 2), how many circles are there left of it in the same row?",0,"(6, 9, 1)"
+156.svg,"In grid 1, starting from the black triangle at position (row 4, column 7), how many black circles are there up of it in the same column?",0,"(6, 9, 1)"
+157.svg,"In grid 1, starting from the black square at position (row 1, column 8), how many white objects are there down of it in the same column?",0,"(6, 9, 1)"
+158.svg,"In grid 1, starting from the white triangle at position (row 4, column 4), how many triangles are there down of it in the same column?",2,"(6, 9, 1)"
+159.svg,"In grid 1, starting from the white square at position (row 1, column 1), how many white triangles are there down of it in the same column?",1,"(6, 9, 1)"
+159.svg,"In grid 1, starting from the white square at position (row 6, column 2), how many white objects are there right of it in the same row?",4,"(6, 9, 1)"
+159.svg,"In grid 1, starting from the white triangle at position (row 1, column 2), how many white circles are there down of it in the same column?",2,"(6, 9, 1)"
+159.svg,"In grid 1, starting from the white square at position (row 1, column 4), how many triangles are there down of it in the same column?",1,"(6, 9, 1)"
+159.svg,"In grid 1, starting from the white square at position (row 6, column 7), how many triangles are there up of it in the same column?",2,"(6, 9, 1)"
+160.svg,"In grid 3, starting from the black square at position (row 4, column 8), how many triangles are there up of it in the same column?",0,"(6, 9, 3)"
+160.svg,"In grid 3, starting from the black circle at position (row 6, column 8), how many white objects are there right of it in the same row?",1,"(6, 9, 3)"
+160.svg,"In grid 1, starting from the black circle at position (row 4, column 2), how many squares are there left of it in the same row?",0,"(6, 9, 3)"
+160.svg,"In grid 2, starting from the white square at position (row 3, column 5), how many white objects are there right of it in the same row?",2,"(6, 9, 3)"
+160.svg,"In grid 1, starting from the white circle at position (row 5, column 6), how many white objects are there down of it in the same column?",0,"(6, 9, 3)"
+161.svg,"In grid 1, starting from the white triangle at position (row 6, column 1), how many circles are there up of it in the same column?",3,"(6, 9, 3)"
+162.svg,"In grid 1, starting from the white circle at position (row 4, column 6), how many black squares are there right of it in the same row?",0,"(6, 9, 3)"
+162.svg,"In grid 1, starting from the black triangle at position (row 2, column 3), how many black circles are there left of it in the same row?",0,"(6, 9, 3)"
+163.svg,"In grid 2, starting from the white square at position (row 3, column 7), how many triangles are there right of it in the same row?",1,"(6, 9, 3)"
+163.svg,"In grid 3, starting from the white circle at position (row 3, column 4), how many white objects are there right of it in the same row?",2,"(6, 9, 3)"
+163.svg,"In grid 3, starting from the black square at position (row 5, column 8), how many white objects are there down of it in the same column?",1,"(6, 9, 3)"
+163.svg,"In grid 3, starting from the white circle at position (row 3, column 2), how many white objects are there right of it in the same row?",3,"(6, 9, 3)"
+164.svg,"In grid 1, starting from the black triangle at position (row 1, column 3), how many black objects are there right of it in the same row?",4,"(6, 9, 3)"
+164.svg,"In grid 1, starting from the black square at position (row 4, column 7), how many black triangles are there left of it in the same row?",1,"(6, 9, 3)"
+165.svg,"In grid 2, starting from the black triangle at position (row 6, column 6), how many white circles are there up of it in the same column?",1,"(6, 9, 3)"
+165.svg,"In grid 1, starting from the black triangle at position (row 2, column 1), how many circles are there right of it in the same row?",4,"(6, 9, 3)"
+165.svg,"In grid 3, starting from the white triangle at position (row 4, column 7), how many white objects are there down of it in the same column?",1,"(6, 9, 3)"
+165.svg,"In grid 3, starting from the black circle at position (row 5, column 3), how many triangles are there left of it in the same row?",0,"(6, 9, 3)"
+166.svg,"In grid 1, starting from the black circle at position (row 3, column 5), how many black objects are there left of it in the same row?",2,"(6, 9, 3)"
+166.svg,"In grid 1, starting from the black triangle at position (row 6, column 8), how many black objects are there left of it in the same row?",4,"(6, 9, 3)"
+166.svg,"In grid 2, starting from the black circle at position (row 6, column 2), how many white objects are there up of it in the same column?",2,"(6, 9, 3)"
+166.svg,"In grid 2, starting from the black circle at position (row 2, column 1), how many circles are there down of it in the same column?",1,"(6, 9, 3)"
+166.svg,"In grid 2, starting from the white triangle at position (row 3, column 7), how many black objects are there down of it in the same column?",2,"(6, 9, 3)"
+167.svg,"In grid 3, starting from the white square at position (row 4, column 1), how many black squares are there down of it in the same column?",0,"(6, 9, 3)"
+167.svg,"In grid 1, starting from the white square at position (row 4, column 2), how many black triangles are there right of it in the same row?",1,"(6, 9, 3)"
+168.svg,"In grid 3, starting from the black square at position (row 2, column 8), how many black circles are there right of it in the same row?",0,"(6, 9, 3)"
+169.svg,"In grid 3, starting from the white triangle at position (row 3, column 7), how many squares are there down of it in the same column?",1,"(6, 9, 3)"
+169.svg,"In grid 1, starting from the black triangle at position (row 3, column 3), how many white triangles are there up of it in the same column?",0,"(6, 9, 3)"
+169.svg,"In grid 1, starting from the white square at position (row 1, column 2), how many black objects are there left of it in the same row?",1,"(6, 9, 3)"
+169.svg,"In grid 3, starting from the black circle at position (row 4, column 6), how many black squares are there up of it in the same column?",1,"(6, 9, 3)"
+170.svg,"In grid 4, starting from the white circle at position (row 6, column 9), how many black objects are there left of it in the same row?",3,"(6, 9, 5)"
+170.svg,"In grid 3, starting from the black circle at position (row 6, column 3), how many black objects are there right of it in the same row?",4,"(6, 9, 5)"
+170.svg,"In grid 2, starting from the white square at position (row 2, column 2), how many black objects are there right of it in the same row?",5,"(6, 9, 5)"
+171.svg,"In grid 4, starting from the black triangle at position (row 2, column 9), how many white objects are there left of it in the same row?",4,"(6, 9, 5)"
+172.svg,"In grid 2, starting from the white square at position (row 4, column 1), how many circles are there up of it in the same column?",0,"(6, 9, 5)"
+172.svg,"In grid 1, starting from the white circle at position (row 2, column 4), how many white objects are there right of it in the same row?",4,"(6, 9, 5)"
+172.svg,"In grid 3, starting from the black triangle at position (row 4, column 8), how many circles are there left of it in the same row?",1,"(6, 9, 5)"
+173.svg,"In grid 5, starting from the black triangle at position (row 1, column 9), how many black triangles are there left of it in the same row?",1,"(6, 9, 5)"
+173.svg,"In grid 3, starting from the white square at position (row 5, column 5), how many circles are there up of it in the same column?",1,"(6, 9, 5)"
+174.svg,"In grid 5, starting from the white triangle at position (row 4, column 4), how many black objects are there up of it in the same column?",3,"(6, 9, 5)"
+174.svg,"In grid 3, starting from the black triangle at position (row 2, column 9), how many squares are there left of it in the same row?",3,"(6, 9, 5)"
+174.svg,"In grid 5, starting from the white triangle at position (row 4, column 4), how many circles are there left of it in the same row?",1,"(6, 9, 5)"
+175.svg,"In grid 3, starting from the white circle at position (row 6, column 1), how many black objects are there up of it in the same column?",3,"(6, 9, 5)"
+176.svg,"In grid 1, starting from the black square at position (row 4, column 2), how many white triangles are there up of it in the same column?",2,"(6, 9, 5)"
+176.svg,"In grid 1, starting from the white square at position (row 5, column 5), how many white circles are there down of it in the same column?",1,"(6, 9, 5)"
+176.svg,"In grid 2, starting from the white square at position (row 2, column 7), how many black objects are there right of it in the same row?",0,"(6, 9, 5)"
+176.svg,"In grid 2, starting from the white triangle at position (row 4, column 6), how many triangles are there left of it in the same row?",3,"(6, 9, 5)"
+177.svg,"In grid 1, starting from the black triangle at position (row 1, column 3), how many white squares are there left of it in the same row?",0,"(6, 9, 5)"
+177.svg,"In grid 2, starting from the black triangle at position (row 5, column 8), how many black objects are there right of it in the same row?",1,"(6, 9, 5)"
+178.svg,"In grid 5, starting from the black triangle at position (row 2, column 7), how many black triangles are there down of it in the same column?",1,"(6, 9, 5)"
+178.svg,"In grid 4, starting from the white square at position (row 4, column 4), how many white triangles are there left of it in the same row?",1,"(6, 9, 5)"
+178.svg,"In grid 5, starting from the black triangle at position (row 5, column 2), how many black objects are there left of it in the same row?",1,"(6, 9, 5)"
+178.svg,"In grid 3, starting from the white triangle at position (row 5, column 4), how many black squares are there left of it in the same row?",2,"(6, 9, 5)"
+178.svg,"In grid 1, starting from the white circle at position (row 5, column 4), how many triangles are there right of it in the same row?",1,"(6, 9, 5)"
+179.svg,"In grid 5, starting from the white triangle at position (row 1, column 6), how many black squares are there left of it in the same row?",0,"(6, 9, 5)"
+179.svg,"In grid 4, starting from the white triangle at position (row 3, column 7), how many white objects are there down of it in the same column?",2,"(6, 9, 5)"
+179.svg,"In grid 1, starting from the white square at position (row 6, column 3), how many white objects are there up of it in the same column?",2,"(6, 9, 5)"
+179.svg,"In grid 3, starting from the white circle at position (row 4, column 6), how many black objects are there right of it in the same row?",0,"(6, 9, 5)"
+180.svg,"In grid 1, starting from the white triangle at position (row 7, column 2), how many black objects are there up of it in the same column?",2,"(9, 3, 1)"
+180.svg,"In grid 1, starting from the white triangle at position (row 9, column 2), how many squares are there left of it in the same row?",1,"(9, 3, 1)"
+180.svg,"In grid 1, starting from the white triangle at position (row 9, column 2), how many white objects are there right of it in the same row?",0,"(9, 3, 1)"
+180.svg,"In grid 1, starting from the black square at position (row 4, column 1), how many white circles are there down of it in the same column?",0,"(9, 3, 1)"
+181.svg,"In grid 1, starting from the black square at position (row 9, column 1), how many black triangles are there up of it in the same column?",0,"(9, 3, 1)"
+181.svg,"In grid 1, starting from the white square at position (row 3, column 2), how many squares are there up of it in the same column?",2,"(9, 3, 1)"
+181.svg,"In grid 1, starting from the black square at position (row 4, column 1), how many circles are there down of it in the same column?",1,"(9, 3, 1)"
+181.svg,"In grid 1, starting from the white square at position (row 4, column 2), how many black circles are there down of it in the same column?",1,"(9, 3, 1)"
+181.svg,"In grid 1, starting from the white triangle at position (row 6, column 1), how many circles are there right of it in the same row?",0,"(9, 3, 1)"
+182.svg,"In grid 1, starting from the white circle at position (row 7, column 3), how many squares are there left of it in the same row?",1,"(9, 3, 1)"
+183.svg,"In grid 1, starting from the white circle at position (row 1, column 1), how many black squares are there right of it in the same row?",0,"(9, 3, 1)"
+183.svg,"In grid 1, starting from the black circle at position (row 6, column 3), how many triangles are there down of it in the same column?",1,"(9, 3, 1)"
+183.svg,"In grid 1, starting from the black triangle at position (row 2, column 3), how many white objects are there left of it in the same row?",2,"(9, 3, 1)"
+183.svg,"In grid 1, starting from the white triangle at position (row 7, column 2), how many triangles are there down of it in the same column?",0,"(9, 3, 1)"
+183.svg,"In grid 1, starting from the black square at position (row 8, column 1), how many white objects are there down of it in the same column?",0,"(9, 3, 1)"
+184.svg,"In grid 1, starting from the white square at position (row 6, column 2), how many white circles are there right of it in the same row?",0,"(9, 3, 1)"
+184.svg,"In grid 1, starting from the white square at position (row 5, column 1), how many circles are there down of it in the same column?",2,"(9, 3, 1)"
+185.svg,"In grid 1, starting from the black circle at position (row 4, column 1), how many black objects are there right of it in the same row?",0,"(9, 3, 1)"
+185.svg,"In grid 1, starting from the white square at position (row 6, column 1), how many circles are there up of it in the same column?",2,"(9, 3, 1)"
+185.svg,"In grid 1, starting from the black triangle at position (row 3, column 2), how many squares are there down of it in the same column?",4,"(9, 3, 1)"
+185.svg,"In grid 1, starting from the black circle at position (row 4, column 1), how many white circles are there up of it in the same column?",0,"(9, 3, 1)"
+185.svg,"In grid 1, starting from the white triangle at position (row 4, column 3), how many black circles are there up of it in the same column?",1,"(9, 3, 1)"
+186.svg,"In grid 1, starting from the white circle at position (row 3, column 3), how many black triangles are there up of it in the same column?",0,"(9, 3, 1)"
+186.svg,"In grid 1, starting from the black triangle at position (row 1, column 2), how many circles are there left of it in the same row?",0,"(9, 3, 1)"
+186.svg,"In grid 1, starting from the white circle at position (row 3, column 2), how many triangles are there right of it in the same row?",0,"(9, 3, 1)"
+186.svg,"In grid 1, starting from the white circle at position (row 3, column 3), how many white triangles are there down of it in the same column?",0,"(9, 3, 1)"
+187.svg,"In grid 1, starting from the black circle at position (row 4, column 1), how many white objects are there right of it in the same row?",1,"(9, 3, 1)"
+187.svg,"In grid 1, starting from the black triangle at position (row 2, column 1), how many squares are there down of it in the same column?",1,"(9, 3, 1)"
+187.svg,"In grid 1, starting from the black square at position (row 4, column 3), how many triangles are there down of it in the same column?",2,"(9, 3, 1)"
+187.svg,"In grid 1, starting from the white circle at position (row 3, column 2), how many white objects are there down of it in the same column?",1,"(9, 3, 1)"
+188.svg,"In grid 1, starting from the white triangle at position (row 4, column 1), how many circles are there down of it in the same column?",3,"(9, 3, 1)"
+188.svg,"In grid 1, starting from the white triangle at position (row 2, column 2), how many triangles are there right of it in the same row?",1,"(9, 3, 1)"
+188.svg,"In grid 1, starting from the black square at position (row 1, column 2), how many black circles are there right of it in the same row?",0,"(9, 3, 1)"
+188.svg,"In grid 1, starting from the black circle at position (row 5, column 1), how many black objects are there down of it in the same column?",2,"(9, 3, 1)"
+189.svg,"In grid 1, starting from the black square at position (row 7, column 1), how many white triangles are there right of it in the same row?",1,"(9, 3, 1)"
+189.svg,"In grid 1, starting from the white triangle at position (row 3, column 2), how many black triangles are there down of it in the same column?",1,"(9, 3, 1)"
+189.svg,"In grid 1, starting from the white triangle at position (row 4, column 3), how many white objects are there up of it in the same column?",3,"(9, 3, 1)"
+189.svg,"In grid 1, starting from the white circle at position (row 3, column 1), how many squares are there down of it in the same column?",4,"(9, 3, 1)"
+190.svg,"In grid 1, starting from the white circle at position (row 9, column 1), how many black triangles are there right of it in the same row?",0,"(9, 3, 3)"
+191.svg,"In grid 3, starting from the white circle at position (row 2, column 2), how many white circles are there down of it in the same column?",1,"(9, 3, 3)"
+191.svg,"In grid 2, starting from the black triangle at position (row 6, column 2), how many black squares are there left of it in the same row?",0,"(9, 3, 3)"
+191.svg,"In grid 1, starting from the white circle at position (row 8, column 1), how many white squares are there up of it in the same column?",1,"(9, 3, 3)"
+191.svg,"In grid 3, starting from the black square at position (row 8, column 3), how many triangles are there up of it in the same column?",3,"(9, 3, 3)"
+192.svg,"In grid 2, starting from the white square at position (row 3, column 1), how many black objects are there up of it in the same column?",1,"(9, 3, 3)"
+193.svg,"In grid 1, starting from the white square at position (row 4, column 1), how many black squares are there right of it in the same row?",1,"(9, 3, 3)"
+193.svg,"In grid 2, starting from the black square at position (row 7, column 1), how many white squares are there up of it in the same column?",3,"(9, 3, 3)"
+193.svg,"In grid 2, starting from the black circle at position (row 7, column 2), how many white squares are there left of it in the same row?",0,"(9, 3, 3)"
+194.svg,"In grid 2, starting from the black circle at position (row 8, column 2), how many triangles are there right of it in the same row?",1,"(9, 3, 3)"
+194.svg,"In grid 2, starting from the white square at position (row 9, column 1), how many black triangles are there up of it in the same column?",2,"(9, 3, 3)"
+194.svg,"In grid 2, starting from the white triangle at position (row 5, column 1), how many circles are there down of it in the same column?",1,"(9, 3, 3)"
+194.svg,"In grid 2, starting from the black triangle at position (row 8, column 3), how many white squares are there up of it in the same column?",0,"(9, 3, 3)"
+194.svg,"In grid 2, starting from the black circle at position (row 7, column 2), how many circles are there down of it in the same column?",1,"(9, 3, 3)"
+195.svg,"In grid 1, starting from the white circle at position (row 7, column 3), how many white circles are there down of it in the same column?",1,"(9, 3, 3)"
+196.svg,"In grid 2, starting from the black triangle at position (row 1, column 3), how many squares are there down of it in the same column?",2,"(9, 3, 3)"
+197.svg,"In grid 1, starting from the black circle at position (row 5, column 3), how many black objects are there up of it in the same column?",2,"(9, 3, 3)"
+197.svg,"In grid 2, starting from the white circle at position (row 8, column 1), how many white squares are there right of it in the same row?",0,"(9, 3, 3)"
+197.svg,"In grid 3, starting from the white circle at position (row 6, column 1), how many black objects are there down of it in the same column?",1,"(9, 3, 3)"
+198.svg,"In grid 2, starting from the white circle at position (row 9, column 3), how many squares are there left of it in the same row?",0,"(9, 3, 3)"
+198.svg,"In grid 3, starting from the black circle at position (row 6, column 3), how many circles are there up of it in the same column?",3,"(9, 3, 3)"
+199.svg,"In grid 3, starting from the black square at position (row 8, column 2), how many circles are there right of it in the same row?",1,"(9, 3, 3)"
+199.svg,"In grid 3, starting from the black circle at position (row 7, column 1), how many circles are there right of it in the same row?",0,"(9, 3, 3)"
+200.svg,"In grid 4, starting from the white square at position (row 8, column 2), how many squares are there down of it in the same column?",0,"(9, 3, 5)"
+200.svg,"In grid 2, starting from the white triangle at position (row 5, column 3), how many white triangles are there up of it in the same column?",1,"(9, 3, 5)"
+200.svg,"In grid 4, starting from the white circle at position (row 8, column 3), how many triangles are there down of it in the same column?",1,"(9, 3, 5)"
+200.svg,"In grid 1, starting from the white circle at position (row 5, column 3), how many black objects are there down of it in the same column?",4,"(9, 3, 5)"
+200.svg,"In grid 4, starting from the black square at position (row 5, column 3), how many white objects are there left of it in the same row?",2,"(9, 3, 5)"
+201.svg,"In grid 5, starting from the white triangle at position (row 4, column 3), how many circles are there left of it in the same row?",0,"(9, 3, 5)"
+202.svg,"In grid 5, starting from the black square at position (row 3, column 1), how many black objects are there down of it in the same column?",3,"(9, 3, 5)"
+203.svg,"In grid 5, starting from the white circle at position (row 3, column 3), how many white squares are there up of it in the same column?",0,"(9, 3, 5)"
+204.svg,"In grid 2, starting from the black triangle at position (row 4, column 3), how many squares are there left of it in the same row?",1,"(9, 3, 5)"
+204.svg,"In grid 4, starting from the black triangle at position (row 6, column 2), how many black circles are there left of it in the same row?",1,"(9, 3, 5)"
+204.svg,"In grid 1, starting from the white square at position (row 5, column 1), how many white objects are there right of it in the same row?",1,"(9, 3, 5)"
+204.svg,"In grid 2, starting from the black square at position (row 6, column 3), how many black objects are there up of it in the same column?",3,"(9, 3, 5)"
+205.svg,"In grid 2, starting from the white circle at position (row 4, column 2), how many white circles are there down of it in the same column?",3,"(9, 3, 5)"
+205.svg,"In grid 3, starting from the white circle at position (row 8, column 2), how many white objects are there down of it in the same column?",0,"(9, 3, 5)"
+206.svg,"In grid 5, starting from the black circle at position (row 4, column 2), how many squares are there down of it in the same column?",1,"(9, 3, 5)"
+206.svg,"In grid 5, starting from the white circle at position (row 9, column 3), how many white objects are there up of it in the same column?",5,"(9, 3, 5)"
+207.svg,"In grid 3, starting from the black circle at position (row 3, column 3), how many white objects are there left of it in the same row?",2,"(9, 3, 5)"
+208.svg,"In grid 5, starting from the black square at position (row 7, column 3), how many white objects are there down of it in the same column?",2,"(9, 3, 5)"
+209.svg,"In grid 4, starting from the black square at position (row 3, column 1), how many white triangles are there right of it in the same row?",0,"(9, 3, 5)"
+209.svg,"In grid 4, starting from the white circle at position (row 5, column 1), how many triangles are there up of it in the same column?",2,"(9, 3, 5)"
+209.svg,"In grid 2, starting from the white triangle at position (row 4, column 1), how many white objects are there down of it in the same column?",3,"(9, 3, 5)"
+209.svg,"In grid 5, starting from the black triangle at position (row 4, column 3), how many squares are there up of it in the same column?",0,"(9, 3, 5)"
+209.svg,"In grid 4, starting from the white circle at position (row 9, column 1), how many squares are there right of it in the same row?",1,"(9, 3, 5)"
+210.svg,"In grid 1, starting from the black circle at position (row 3, column 3), how many circles are there right of it in the same row?",0,"(9, 6, 1)"
+211.svg,"In grid 1, starting from the white circle at position (row 7, column 2), how many white objects are there up of it in the same column?",1,"(9, 6, 1)"
+211.svg,"In grid 1, starting from the black triangle at position (row 5, column 1), how many white squares are there up of it in the same column?",1,"(9, 6, 1)"
+211.svg,"In grid 1, starting from the white circle at position (row 4, column 3), how many white circles are there right of it in the same row?",0,"(9, 6, 1)"
+211.svg,"In grid 1, starting from the black circle at position (row 6, column 2), how many triangles are there right of it in the same row?",0,"(9, 6, 1)"
+211.svg,"In grid 1, starting from the black circle at position (row 6, column 2), how many triangles are there down of it in the same column?",1,"(9, 6, 1)"
+212.svg,"In grid 1, starting from the black square at position (row 9, column 3), how many black objects are there up of it in the same column?",4,"(9, 6, 1)"
+212.svg,"In grid 1, starting from the black triangle at position (row 5, column 4), how many black triangles are there up of it in the same column?",0,"(9, 6, 1)"
+212.svg,"In grid 1, starting from the black square at position (row 1, column 4), how many black objects are there left of it in the same row?",1,"(9, 6, 1)"
+213.svg,"In grid 1, starting from the white circle at position (row 8, column 4), how many white objects are there up of it in the same column?",6,"(9, 6, 1)"
+213.svg,"In grid 1, starting from the black square at position (row 5, column 6), how many black squares are there down of it in the same column?",1,"(9, 6, 1)"
+213.svg,"In grid 1, starting from the black triangle at position (row 9, column 5), how many circles are there left of it in the same row?",0,"(9, 6, 1)"
+213.svg,"In grid 1, starting from the black triangle at position (row 6, column 2), how many circles are there right of it in the same row?",2,"(9, 6, 1)"
+213.svg,"In grid 1, starting from the white triangle at position (row 6, column 4), how many white objects are there left of it in the same row?",0,"(9, 6, 1)"
+214.svg,"In grid 1, starting from the white circle at position (row 7, column 1), how many white circles are there down of it in the same column?",1,"(9, 6, 1)"
+214.svg,"In grid 1, starting from the white square at position (row 5, column 6), how many black objects are there left of it in the same row?",3,"(9, 6, 1)"
+215.svg,"In grid 1, starting from the black square at position (row 4, column 3), how many white circles are there right of it in the same row?",0,"(9, 6, 1)"
+215.svg,"In grid 1, starting from the white triangle at position (row 2, column 6), how many black objects are there up of it in the same column?",0,"(9, 6, 1)"
+215.svg,"In grid 1, starting from the black square at position (row 5, column 4), how many white squares are there right of it in the same row?",0,"(9, 6, 1)"
+215.svg,"In grid 1, starting from the white circle at position (row 3, column 5), how many white objects are there right of it in the same row?",0,"(9, 6, 1)"
+215.svg,"In grid 1, starting from the black square at position (row 9, column 5), how many black squares are there right of it in the same row?",0,"(9, 6, 1)"
+216.svg,"In grid 1, starting from the black circle at position (row 2, column 2), how many squares are there down of it in the same column?",1,"(9, 6, 1)"
+217.svg,"In grid 1, starting from the white square at position (row 2, column 1), how many white objects are there right of it in the same row?",2,"(9, 6, 1)"
+217.svg,"In grid 1, starting from the white circle at position (row 6, column 2), how many white objects are there right of it in the same row?",2,"(9, 6, 1)"
+217.svg,"In grid 1, starting from the white triangle at position (row 3, column 4), how many black objects are there up of it in the same column?",2,"(9, 6, 1)"
+218.svg,"In grid 1, starting from the white triangle at position (row 7, column 4), how many black objects are there up of it in the same column?",3,"(9, 6, 1)"
+218.svg,"In grid 1, starting from the black square at position (row 8, column 3), how many black squares are there left of it in the same row?",0,"(9, 6, 1)"
+218.svg,"In grid 1, starting from the black triangle at position (row 7, column 5), how many black objects are there left of it in the same row?",1,"(9, 6, 1)"
+218.svg,"In grid 1, starting from the black triangle at position (row 6, column 3), how many circles are there down of it in the same column?",1,"(9, 6, 1)"
+218.svg,"In grid 1, starting from the white square at position (row 2, column 4), how many white squares are there left of it in the same row?",0,"(9, 6, 1)"
+219.svg,"In grid 1, starting from the white triangle at position (row 9, column 4), how many black squares are there up of it in the same column?",1,"(9, 6, 1)"
+220.svg,"In grid 2, starting from the black triangle at position (row 9, column 5), how many black triangles are there right of it in the same row?",1,"(9, 6, 3)"
+220.svg,"In grid 1, starting from the white square at position (row 6, column 6), how many triangles are there down of it in the same column?",2,"(9, 6, 3)"
+221.svg,"In grid 2, starting from the black square at position (row 4, column 6), how many black objects are there up of it in the same column?",2,"(9, 6, 3)"
+221.svg,"In grid 1, starting from the black triangle at position (row 2, column 4), how many triangles are there down of it in the same column?",2,"(9, 6, 3)"
+222.svg,"In grid 1, starting from the black square at position (row 6, column 1), how many white objects are there right of it in the same row?",3,"(9, 6, 3)"
+222.svg,"In grid 1, starting from the white circle at position (row 5, column 3), how many white objects are there down of it in the same column?",2,"(9, 6, 3)"
+222.svg,"In grid 1, starting from the black triangle at position (row 2, column 2), how many white squares are there up of it in the same column?",0,"(9, 6, 3)"
+222.svg,"In grid 2, starting from the white circle at position (row 3, column 4), how many squares are there down of it in the same column?",2,"(9, 6, 3)"
+222.svg,"In grid 3, starting from the white circle at position (row 7, column 3), how many circles are there left of it in the same row?",1,"(9, 6, 3)"
+223.svg,"In grid 1, starting from the black circle at position (row 1, column 3), how many black circles are there left of it in the same row?",1,"(9, 6, 3)"
+223.svg,"In grid 2, starting from the black circle at position (row 7, column 1), how many white objects are there right of it in the same row?",0,"(9, 6, 3)"
+223.svg,"In grid 2, starting from the black triangle at position (row 4, column 5), how many black objects are there up of it in the same column?",3,"(9, 6, 3)"
+223.svg,"In grid 1, starting from the black circle at position (row 1, column 3), how many black squares are there down of it in the same column?",1,"(9, 6, 3)"
+223.svg,"In grid 3, starting from the black square at position (row 8, column 2), how many white objects are there down of it in the same column?",1,"(9, 6, 3)"
+224.svg,"In grid 1, starting from the white triangle at position (row 3, column 4), how many white circles are there left of it in the same row?",0,"(9, 6, 3)"
+224.svg,"In grid 2, starting from the black triangle at position (row 5, column 4), how many white objects are there down of it in the same column?",4,"(9, 6, 3)"
+224.svg,"In grid 2, starting from the white circle at position (row 9, column 4), how many white objects are there up of it in the same column?",4,"(9, 6, 3)"
+225.svg,"In grid 3, starting from the white square at position (row 3, column 1), how many black objects are there up of it in the same column?",0,"(9, 6, 3)"
+225.svg,"In grid 3, starting from the black square at position (row 8, column 4), how many white objects are there up of it in the same column?",3,"(9, 6, 3)"
+226.svg,"In grid 2, starting from the black square at position (row 6, column 5), how many black circles are there down of it in the same column?",1,"(9, 6, 3)"
+227.svg,"In grid 1, starting from the black circle at position (row 8, column 5), how many black objects are there left of it in the same row?",2,"(9, 6, 3)"
+227.svg,"In grid 1, starting from the black circle at position (row 5, column 5), how many squares are there down of it in the same column?",1,"(9, 6, 3)"
+227.svg,"In grid 3, starting from the white circle at position (row 8, column 6), how many squares are there up of it in the same column?",2,"(9, 6, 3)"
+227.svg,"In grid 3, starting from the white triangle at position (row 4, column 1), how many squares are there down of it in the same column?",1,"(9, 6, 3)"
+227.svg,"In grid 1, starting from the white circle at position (row 3, column 3), how many squares are there down of it in the same column?",3,"(9, 6, 3)"
+228.svg,"In grid 3, starting from the black triangle at position (row 3, column 2), how many squares are there right of it in the same row?",1,"(9, 6, 3)"
+229.svg,"In grid 3, starting from the white square at position (row 4, column 5), how many black circles are there right of it in the same row?",0,"(9, 6, 3)"
+229.svg,"In grid 1, starting from the white square at position (row 4, column 3), how many black squares are there left of it in the same row?",1,"(9, 6, 3)"
+229.svg,"In grid 2, starting from the black circle at position (row 1, column 1), how many triangles are there right of it in the same row?",2,"(9, 6, 3)"
+229.svg,"In grid 1, starting from the white circle at position (row 3, column 1), how many black objects are there down of it in the same column?",4,"(9, 6, 3)"
+229.svg,"In grid 3, starting from the white triangle at position (row 6, column 3), how many black objects are there left of it in the same row?",0,"(9, 6, 3)"
+230.svg,"In grid 1, starting from the white circle at position (row 5, column 2), how many black objects are there right of it in the same row?",3,"(9, 6, 5)"
+230.svg,"In grid 4, starting from the white square at position (row 3, column 1), how many white circles are there down of it in the same column?",2,"(9, 6, 5)"
+230.svg,"In grid 5, starting from the black square at position (row 9, column 4), how many circles are there up of it in the same column?",3,"(9, 6, 5)"
+230.svg,"In grid 4, starting from the white circle at position (row 7, column 3), how many circles are there down of it in the same column?",0,"(9, 6, 5)"
+231.svg,"In grid 3, starting from the white triangle at position (row 9, column 3), how many circles are there left of it in the same row?",0,"(9, 6, 5)"
+231.svg,"In grid 1, starting from the black square at position (row 5, column 4), how many black objects are there right of it in the same row?",1,"(9, 6, 5)"
+231.svg,"In grid 1, starting from the black square at position (row 4, column 4), how many white objects are there up of it in the same column?",0,"(9, 6, 5)"
+231.svg,"In grid 1, starting from the black circle at position (row 2, column 6), how many black objects are there down of it in the same column?",1,"(9, 6, 5)"
+232.svg,"In grid 1, starting from the white triangle at position (row 9, column 1), how many triangles are there up of it in the same column?",4,"(9, 6, 5)"
+233.svg,"In grid 3, starting from the white circle at position (row 5, column 5), how many black objects are there down of it in the same column?",3,"(9, 6, 5)"
+233.svg,"In grid 5, starting from the black square at position (row 6, column 3), how many white squares are there down of it in the same column?",0,"(9, 6, 5)"
+234.svg,"In grid 4, starting from the black circle at position (row 6, column 4), how many triangles are there left of it in the same row?",2,"(9, 6, 5)"
+234.svg,"In grid 3, starting from the black circle at position (row 9, column 1), how many white objects are there right of it in the same row?",3,"(9, 6, 5)"
+234.svg,"In grid 5, starting from the white triangle at position (row 2, column 3), how many circles are there right of it in the same row?",2,"(9, 6, 5)"
+234.svg,"In grid 3, starting from the white circle at position (row 8, column 1), how many squares are there right of it in the same row?",1,"(9, 6, 5)"
+234.svg,"In grid 4, starting from the white square at position (row 7, column 2), how many black triangles are there up of it in the same column?",0,"(9, 6, 5)"
+235.svg,"In grid 2, starting from the white circle at position (row 2, column 2), how many squares are there left of it in the same row?",0,"(9, 6, 5)"
+236.svg,"In grid 2, starting from the white circle at position (row 2, column 3), how many black triangles are there down of it in the same column?",0,"(9, 6, 5)"
+236.svg,"In grid 2, starting from the white circle at position (row 6, column 5), how many black objects are there up of it in the same column?",2,"(9, 6, 5)"
+236.svg,"In grid 3, starting from the black square at position (row 2, column 3), how many white triangles are there down of it in the same column?",1,"(9, 6, 5)"
+236.svg,"In grid 3, starting from the white square at position (row 9, column 6), how many black squares are there left of it in the same row?",0,"(9, 6, 5)"
+236.svg,"In grid 1, starting from the black square at position (row 4, column 5), how many white objects are there left of it in the same row?",4,"(9, 6, 5)"
+237.svg,"In grid 2, starting from the black square at position (row 2, column 3), how many black objects are there right of it in the same row?",2,"(9, 6, 5)"
+237.svg,"In grid 4, starting from the black square at position (row 3, column 1), how many white triangles are there up of it in the same column?",0,"(9, 6, 5)"
+237.svg,"In grid 5, starting from the white square at position (row 7, column 5), how many white triangles are there left of it in the same row?",0,"(9, 6, 5)"
+237.svg,"In grid 3, starting from the white square at position (row 8, column 6), how many circles are there down of it in the same column?",0,"(9, 6, 5)"
+238.svg,"In grid 4, starting from the black triangle at position (row 6, column 2), how many white triangles are there down of it in the same column?",0,"(9, 6, 5)"
+238.svg,"In grid 3, starting from the black square at position (row 9, column 6), how many black objects are there up of it in the same column?",2,"(9, 6, 5)"
+238.svg,"In grid 4, starting from the black square at position (row 8, column 5), how many black objects are there right of it in the same row?",0,"(9, 6, 5)"
+239.svg,"In grid 1, starting from the white triangle at position (row 3, column 3), how many circles are there up of it in the same column?",0,"(9, 6, 5)"
+239.svg,"In grid 3, starting from the white triangle at position (row 1, column 6), how many triangles are there left of it in the same row?",2,"(9, 6, 5)"
+239.svg,"In grid 5, starting from the black square at position (row 3, column 6), how many circles are there left of it in the same row?",2,"(9, 6, 5)"
+239.svg,"In grid 5, starting from the black circle at position (row 6, column 3), how many circles are there up of it in the same column?",1,"(9, 6, 5)"
+240.svg,"In grid 1, starting from the black triangle at position (row 5, column 9), how many triangles are there left of it in the same row?",3,"(9, 9, 1)"
+240.svg,"In grid 1, starting from the white square at position (row 5, column 1), how many white squares are there down of it in the same column?",1,"(9, 9, 1)"
+240.svg,"In grid 1, starting from the white square at position (row 3, column 2), how many black squares are there left of it in the same row?",1,"(9, 9, 1)"
+241.svg,"In grid 1, starting from the white triangle at position (row 8, column 8), how many triangles are there up of it in the same column?",4,"(9, 9, 1)"
+241.svg,"In grid 1, starting from the black triangle at position (row 6, column 6), how many black objects are there down of it in the same column?",1,"(9, 9, 1)"
+241.svg,"In grid 1, starting from the white circle at position (row 6, column 8), how many black objects are there left of it in the same row?",3,"(9, 9, 1)"
+241.svg,"In grid 1, starting from the black square at position (row 4, column 3), how many circles are there up of it in the same column?",1,"(9, 9, 1)"
+241.svg,"In grid 1, starting from the white square at position (row 8, column 1), how many white squares are there down of it in the same column?",0,"(9, 9, 1)"
+242.svg,"In grid 1, starting from the white triangle at position (row 9, column 3), how many white squares are there left of it in the same row?",1,"(9, 9, 1)"
+243.svg,"In grid 1, starting from the black triangle at position (row 1, column 4), how many black objects are there right of it in the same row?",3,"(9, 9, 1)"
+243.svg,"In grid 1, starting from the black circle at position (row 1, column 5), how many circles are there right of it in the same row?",0,"(9, 9, 1)"
+244.svg,"In grid 1, starting from the white circle at position (row 3, column 7), how many black triangles are there left of it in the same row?",1,"(9, 9, 1)"
+244.svg,"In grid 1, starting from the black triangle at position (row 9, column 3), how many black triangles are there left of it in the same row?",1,"(9, 9, 1)"
+245.svg,"In grid 1, starting from the white square at position (row 1, column 1), how many black objects are there down of it in the same column?",3,"(9, 9, 1)"
+245.svg,"In grid 1, starting from the white circle at position (row 9, column 2), how many white triangles are there right of it in the same row?",2,"(9, 9, 1)"
+246.svg,"In grid 1, starting from the black triangle at position (row 4, column 5), how many black objects are there left of it in the same row?",1,"(9, 9, 1)"
+246.svg,"In grid 1, starting from the white circle at position (row 4, column 2), how many white objects are there up of it in the same column?",2,"(9, 9, 1)"
+246.svg,"In grid 1, starting from the black square at position (row 6, column 8), how many white triangles are there left of it in the same row?",1,"(9, 9, 1)"
+246.svg,"In grid 1, starting from the black square at position (row 5, column 5), how many white triangles are there down of it in the same column?",0,"(9, 9, 1)"
+246.svg,"In grid 1, starting from the black square at position (row 4, column 4), how many white triangles are there down of it in the same column?",1,"(9, 9, 1)"
+247.svg,"In grid 1, starting from the black square at position (row 4, column 8), how many black circles are there down of it in the same column?",0,"(9, 9, 1)"
+247.svg,"In grid 1, starting from the black triangle at position (row 7, column 4), how many white triangles are there down of it in the same column?",1,"(9, 9, 1)"
+247.svg,"In grid 1, starting from the white triangle at position (row 5, column 3), how many white triangles are there left of it in the same row?",0,"(9, 9, 1)"
+248.svg,"In grid 1, starting from the white triangle at position (row 3, column 4), how many black triangles are there left of it in the same row?",1,"(9, 9, 1)"
+248.svg,"In grid 1, starting from the white triangle at position (row 4, column 4), how many circles are there left of it in the same row?",1,"(9, 9, 1)"
+248.svg,"In grid 1, starting from the white triangle at position (row 3, column 4), how many triangles are there right of it in the same row?",1,"(9, 9, 1)"
+248.svg,"In grid 1, starting from the black square at position (row 6, column 5), how many black triangles are there down of it in the same column?",0,"(9, 9, 1)"
+249.svg,"In grid 1, starting from the white square at position (row 2, column 3), how many black objects are there right of it in the same row?",3,"(9, 9, 1)"
+249.svg,"In grid 1, starting from the white triangle at position (row 8, column 1), how many black circles are there right of it in the same row?",1,"(9, 9, 1)"
+250.svg,"In grid 2, starting from the white triangle at position (row 6, column 4), how many circles are there right of it in the same row?",1,"(9, 9, 3)"
+250.svg,"In grid 3, starting from the white circle at position (row 6, column 7), how many black objects are there right of it in the same row?",1,"(9, 9, 3)"
+251.svg,"In grid 2, starting from the white triangle at position (row 6, column 2), how many white objects are there left of it in the same row?",1,"(9, 9, 3)"
+251.svg,"In grid 3, starting from the black square at position (row 3, column 9), how many squares are there left of it in the same row?",3,"(9, 9, 3)"
+251.svg,"In grid 1, starting from the black circle at position (row 2, column 1), how many circles are there down of it in the same column?",1,"(9, 9, 3)"
+251.svg,"In grid 2, starting from the black circle at position (row 4, column 8), how many white objects are there down of it in the same column?",3,"(9, 9, 3)"
+251.svg,"In grid 3, starting from the white circle at position (row 9, column 4), how many squares are there up of it in the same column?",4,"(9, 9, 3)"
+252.svg,"In grid 1, starting from the white circle at position (row 2, column 8), how many squares are there down of it in the same column?",3,"(9, 9, 3)"
+252.svg,"In grid 1, starting from the black square at position (row 1, column 9), how many black objects are there left of it in the same row?",4,"(9, 9, 3)"
+252.svg,"In grid 1, starting from the white triangle at position (row 8, column 6), how many triangles are there up of it in the same column?",1,"(9, 9, 3)"
+252.svg,"In grid 1, starting from the black circle at position (row 8, column 1), how many circles are there down of it in the same column?",0,"(9, 9, 3)"
+253.svg,"In grid 2, starting from the white square at position (row 4, column 9), how many black triangles are there up of it in the same column?",1,"(9, 9, 3)"
+253.svg,"In grid 2, starting from the white triangle at position (row 4, column 2), how many white objects are there left of it in the same row?",1,"(9, 9, 3)"
+253.svg,"In grid 1, starting from the white triangle at position (row 5, column 9), how many white objects are there up of it in the same column?",0,"(9, 9, 3)"
+253.svg,"In grid 1, starting from the black triangle at position (row 3, column 4), how many black squares are there left of it in the same row?",0,"(9, 9, 3)"
+254.svg,"In grid 1, starting from the white square at position (row 4, column 3), how many black objects are there left of it in the same row?",1,"(9, 9, 3)"
+254.svg,"In grid 3, starting from the white triangle at position (row 4, column 9), how many triangles are there left of it in the same row?",4,"(9, 9, 3)"
+254.svg,"In grid 2, starting from the white square at position (row 5, column 3), how many white squares are there right of it in the same row?",0,"(9, 9, 3)"
+254.svg,"In grid 3, starting from the white circle at position (row 1, column 3), how many white triangles are there down of it in the same column?",1,"(9, 9, 3)"
+254.svg,"In grid 3, starting from the white circle at position (row 5, column 1), how many black squares are there down of it in the same column?",0,"(9, 9, 3)"
+255.svg,"In grid 1, starting from the black triangle at position (row 7, column 9), how many white squares are there left of it in the same row?",0,"(9, 9, 3)"
+255.svg,"In grid 1, starting from the black triangle at position (row 5, column 8), how many black squares are there up of it in the same column?",0,"(9, 9, 3)"
+255.svg,"In grid 2, starting from the white triangle at position (row 6, column 5), how many black objects are there down of it in the same column?",2,"(9, 9, 3)"
+255.svg,"In grid 3, starting from the black square at position (row 7, column 2), how many black objects are there left of it in the same row?",0,"(9, 9, 3)"
+255.svg,"In grid 1, starting from the white triangle at position (row 9, column 3), how many white squares are there up of it in the same column?",2,"(9, 9, 3)"
+256.svg,"In grid 1, starting from the white square at position (row 8, column 4), how many black objects are there left of it in the same row?",2,"(9, 9, 3)"
+256.svg,"In grid 2, starting from the white square at position (row 7, column 5), how many black objects are there left of it in the same row?",4,"(9, 9, 3)"
+256.svg,"In grid 2, starting from the black triangle at position (row 6, column 7), how many white triangles are there left of it in the same row?",1,"(9, 9, 3)"
+257.svg,"In grid 1, starting from the black triangle at position (row 2, column 2), how many black objects are there down of it in the same column?",4,"(9, 9, 3)"
+258.svg,"In grid 3, starting from the white square at position (row 2, column 8), how many white triangles are there left of it in the same row?",1,"(9, 9, 3)"
+258.svg,"In grid 2, starting from the white triangle at position (row 6, column 5), how many white squares are there up of it in the same column?",0,"(9, 9, 3)"
+259.svg,"In grid 1, starting from the white triangle at position (row 8, column 5), how many black triangles are there left of it in the same row?",0,"(9, 9, 3)"
+259.svg,"In grid 3, starting from the black circle at position (row 3, column 2), how many black squares are there up of it in the same column?",1,"(9, 9, 3)"
+259.svg,"In grid 3, starting from the white circle at position (row 8, column 8), how many white triangles are there down of it in the same column?",0,"(9, 9, 3)"
+259.svg,"In grid 3, starting from the white circle at position (row 7, column 5), how many white objects are there left of it in the same row?",1,"(9, 9, 3)"
+259.svg,"In grid 2, starting from the black circle at position (row 6, column 7), how many white objects are there down of it in the same column?",2,"(9, 9, 3)"
+260.svg,"In grid 4, starting from the white square at position (row 9, column 2), how many black circles are there left of it in the same row?",0,"(9, 9, 5)"
+260.svg,"In grid 3, starting from the black circle at position (row 2, column 3), how many white squares are there left of it in the same row?",0,"(9, 9, 5)"
+260.svg,"In grid 5, starting from the white triangle at position (row 1, column 5), how many white objects are there down of it in the same column?",4,"(9, 9, 5)"
+260.svg,"In grid 4, starting from the white square at position (row 4, column 7), how many black circles are there left of it in the same row?",0,"(9, 9, 5)"
+260.svg,"In grid 5, starting from the white circle at position (row 7, column 4), how many black objects are there right of it in the same row?",3,"(9, 9, 5)"
+261.svg,"In grid 2, starting from the white triangle at position (row 5, column 4), how many black objects are there down of it in the same column?",2,"(9, 9, 5)"
+261.svg,"In grid 5, starting from the black triangle at position (row 7, column 8), how many white circles are there right of it in the same row?",0,"(9, 9, 5)"
+261.svg,"In grid 3, starting from the white triangle at position (row 7, column 3), how many black circles are there right of it in the same row?",1,"(9, 9, 5)"
+262.svg,"In grid 3, starting from the black square at position (row 3, column 8), how many white squares are there down of it in the same column?",1,"(9, 9, 5)"
+262.svg,"In grid 5, starting from the white circle at position (row 4, column 8), how many black triangles are there up of it in the same column?",0,"(9, 9, 5)"
+262.svg,"In grid 5, starting from the black circle at position (row 7, column 8), how many white triangles are there up of it in the same column?",1,"(9, 9, 5)"
+263.svg,"In grid 1, starting from the black triangle at position (row 1, column 9), how many black objects are there left of it in the same row?",4,"(9, 9, 5)"
+263.svg,"In grid 3, starting from the white triangle at position (row 3, column 5), how many white objects are there left of it in the same row?",1,"(9, 9, 5)"
+263.svg,"In grid 2, starting from the black square at position (row 2, column 7), how many black squares are there up of it in the same column?",0,"(9, 9, 5)"
+263.svg,"In grid 2, starting from the white triangle at position (row 4, column 1), how many white triangles are there up of it in the same column?",0,"(9, 9, 5)"
+264.svg,"In grid 4, starting from the white square at position (row 2, column 2), how many triangles are there down of it in the same column?",3,"(9, 9, 5)"
+264.svg,"In grid 2, starting from the white circle at position (row 3, column 7), how many black squares are there right of it in the same row?",1,"(9, 9, 5)"
+265.svg,"In grid 4, starting from the black circle at position (row 4, column 8), how many black objects are there right of it in the same row?",1,"(9, 9, 5)"
+265.svg,"In grid 2, starting from the black square at position (row 8, column 5), how many triangles are there up of it in the same column?",1,"(9, 9, 5)"
+265.svg,"In grid 2, starting from the white square at position (row 3, column 1), how many black circles are there down of it in the same column?",0,"(9, 9, 5)"
+265.svg,"In grid 2, starting from the white triangle at position (row 4, column 8), how many squares are there right of it in the same row?",1,"(9, 9, 5)"
+266.svg,"In grid 1, starting from the white square at position (row 3, column 2), how many circles are there down of it in the same column?",1,"(9, 9, 5)"
+266.svg,"In grid 5, starting from the black circle at position (row 3, column 6), how many squares are there up of it in the same column?",1,"(9, 9, 5)"
+266.svg,"In grid 5, starting from the black circle at position (row 2, column 4), how many squares are there right of it in the same row?",1,"(9, 9, 5)"
+266.svg,"In grid 3, starting from the white triangle at position (row 8, column 9), how many black circles are there up of it in the same column?",2,"(9, 9, 5)"
+266.svg,"In grid 5, starting from the black triangle at position (row 2, column 2), how many white objects are there left of it in the same row?",1,"(9, 9, 5)"
+267.svg,"In grid 5, starting from the white circle at position (row 3, column 5), how many white objects are there left of it in the same row?",1,"(9, 9, 5)"
+267.svg,"In grid 5, starting from the white square at position (row 6, column 8), how many black objects are there down of it in the same column?",2,"(9, 9, 5)"
+268.svg,"In grid 1, starting from the black triangle at position (row 2, column 4), how many white objects are there right of it in the same row?",2,"(9, 9, 5)"
+268.svg,"In grid 4, starting from the white triangle at position (row 1, column 8), how many circles are there right of it in the same row?",0,"(9, 9, 5)"
+268.svg,"In grid 2, starting from the black square at position (row 4, column 4), how many black objects are there right of it in the same row?",2,"(9, 9, 5)"
+268.svg,"In grid 3, starting from the black triangle at position (row 1, column 4), how many black squares are there down of it in the same column?",0,"(9, 9, 5)"
+269.svg,"In grid 2, starting from the white square at position (row 1, column 8), how many squares are there right of it in the same row?",0,"(9, 9, 5)"
+269.svg,"In grid 4, starting from the black circle at position (row 3, column 3), how many triangles are there up of it in the same column?",1,"(9, 9, 5)"
+269.svg,"In grid 5, starting from the white square at position (row 8, column 2), how many white objects are there right of it in the same row?",4,"(9, 9, 5)"
+269.svg,"In grid 4, starting from the black circle at position (row 8, column 2), how many white objects are there down of it in the same column?",0,"(9, 9, 5)"
+269.svg,"In grid 2, starting from the black circle at position (row 1, column 4), how many triangles are there right of it in the same row?",1,"(9, 9, 5)"
diff --git a/2D_DoYouSeeMe/visual_spatial/spatial_dataset_converter.py b/2D_DoYouSeeMe/visual_spatial/spatial_dataset_converter.py
new file mode 100644
index 0000000000000000000000000000000000000000..14f537001095d591e890c5a083cc1d9c69129a89
--- /dev/null
+++ b/2D_DoYouSeeMe/visual_spatial/spatial_dataset_converter.py
@@ -0,0 +1,215 @@
+# Copyright (c) Microsoft Corporation.
+# Licensed under the MIT license.
+
+import os
+import pandas as pd
+import random
+from typing import Dict, List, Tuple, Any, Optional
+
+class MultiGridQuestionGenerator:
+ def __init__(self, spatial_dicts: List[Dict]):
+ """
+ Initialize with a list of spatial dictionaries, each representing one grid
+
+ Args:
+ spatial_dicts: List of dictionaries, where each dictionary maps (row, col)
+ to (shape, color) for one grid
+ """
+ self.spatial_dicts = spatial_dicts
+ self.num_grids = len(spatial_dicts)
+ self.grid_dimensions = [self._get_grid_dimensions(d) for d in spatial_dicts]
+ self.shapes = ['triangle', 'square', 'circle']
+ self.colors = ['black', 'white']
+
+ def _get_grid_dimensions(self, spatial_dict: Dict) -> Tuple[int, int]:
+ """Calculate dimensions for a single grid"""
+ max_row = max(pos[0] for pos in spatial_dict.keys())
+ max_col = max(pos[1] for pos in spatial_dict.keys())
+ return (max_row + 1, max_col + 1)
+
+ def _get_object_at_position(self, grid_idx: int, row: int, col: int) -> Tuple[str, str]:
+ """Get object at position in specified grid"""
+ return self.spatial_dicts[grid_idx].get((row, col), (None, None))
+
+ def _count_objects_same_row(self, grid_idx: int, row: int, col: int,
+ direction: str,
+ color: Optional[str] = None,
+ shape: Optional[str] = None) -> int:
+ """Count objects in same row in specified direction for given grid"""
+ rows, cols = self.grid_dimensions[grid_idx]
+
+ if not (0 <= row < rows and 0 <= col < cols):
+ return -1
+
+ if direction == 'right' and col >= cols - 1:
+ return -1
+ if direction == 'left' and col <= 0:
+ return -1
+
+ count = 0
+ if direction == 'right':
+ range_to_check = range(col + 1, cols)
+ else: # left
+ range_to_check = range(col - 1, -1, -1)
+
+ for c in range_to_check:
+ curr_shape, curr_color = self._get_object_at_position(grid_idx, row, c)
+ matches = True
+ if color and curr_color != color:
+ matches = False
+ if shape and curr_shape != shape:
+ matches = False
+ if matches:
+ count += 1
+ return count
+
+ def _count_objects_same_column(self, grid_idx: int, row: int, col: int,
+ direction: str,
+ color: Optional[str] = None,
+ shape: Optional[str] = None) -> int:
+ """Count objects in same column in specified direction for given grid"""
+ rows, cols = self.grid_dimensions[grid_idx]
+
+ if not (0 <= row < rows and 0 <= col < cols):
+ return -1
+
+ if direction == 'up' and row <= 0:
+ return -1
+ if direction == 'down' and row >= rows - 1:
+ return -1
+
+ count = 0
+ if direction == 'up':
+ range_to_check = range(row - 1, -1, -1)
+ else: # down
+ range_to_check = range(row + 1, rows)
+
+ for r in range_to_check:
+ curr_shape, curr_color = self._get_object_at_position(grid_idx, r, col)
+ matches = True
+ if color and curr_color != color:
+ matches = False
+ if shape and curr_shape != shape:
+ matches = False
+ if matches:
+ count += 1
+ return count
+
+ def _gen_directional_count_question(self) -> Optional[Dict[str, Any]]:
+ """Generate a question about counting objects in a specific direction"""
+ # Choose a random grid
+ grid_idx = random.randint(0, self.num_grids - 1)
+ rows, cols = self.grid_dimensions[grid_idx]
+
+ # Choose direction and appropriate position constraints
+ direction = random.choice(['left', 'right', 'up', 'down'])
+
+ if direction == 'right':
+ row = random.randint(0, rows - 1)
+ col = random.randint(0, cols - 2) # Avoid rightmost
+ elif direction == 'left':
+ row = random.randint(0, rows - 1)
+ col = random.randint(1, cols - 1) # Avoid leftmost
+ elif direction == 'up':
+ row = random.randint(1, rows - 1) # Avoid topmost
+ col = random.randint(0, cols - 1)
+ else: # down
+ row = random.randint(0, rows - 2) # Avoid bottommost
+ col = random.randint(0, cols - 1)
+
+ base_shape, base_color = self._get_object_at_position(grid_idx, row, col)
+
+ # Randomly choose what to count
+ count_type = random.choice(['color', 'shape', 'both'])
+ target_color = random.choice(self.colors) if count_type in ['color', 'both'] else None
+ target_shape = random.choice(self.shapes) if count_type in ['shape', 'both'] else None
+
+ # Generate count based on direction
+ if direction in ['left', 'right']:
+ count = self._count_objects_same_row(grid_idx, row, col, direction, target_color, target_shape)
+ else:
+ count = self._count_objects_same_column(grid_idx, row, col, direction, target_color, target_shape)
+
+ # Construct question text
+ what_to_count = ""
+ if count_type == 'color':
+ what_to_count = f"{target_color} objects"
+ elif count_type == 'shape':
+ what_to_count = f"{target_shape}s"
+ else:
+ what_to_count = f"{target_color} {target_shape}s"
+
+ question = (
+ f"In grid {grid_idx + 1}, starting from the {base_color} {base_shape} at position "
+ f"(row {row + 1}, column {col + 1}), how many {what_to_count} are there {direction} "
+ f"of it in the same {'row' if direction in ['left', 'right'] else 'column'}?"
+ )
+
+ return {
+ "question": question,
+ "answer": count,
+ "type": f"count_{direction}",
+ "grid_idx": grid_idx
+ }
+
+ def generate_question_set(self, num_questions: int = 5) -> List[Dict[str, Any]]:
+ """Generate a set of unique questions across all grids"""
+ questions = []
+ attempts = 0
+ max_attempts = num_questions * 3
+
+ question_generators = [
+ self._gen_directional_count_question,
+ # Add other question generators here
+ ]
+
+ while len(questions) < num_questions and attempts < max_attempts:
+ gen_func = random.choice(question_generators)
+ question = gen_func()
+ if question and not any(self._are_similar_questions(question, q) for q in questions):
+ questions.append(question)
+ attempts += 1
+
+ return questions
+
+ def _are_similar_questions(self, q1: Dict[str, Any], q2: Dict[str, Any]) -> bool:
+ """Check if two questions are too similar"""
+ if q1['type'] != q2['type'] or q1['grid_idx'] != q2['grid_idx']:
+ return False
+ return q1['question'] == q2['question']
+
+
+def process_dataset(df: pd.DataFrame) -> pd.DataFrame:
+ """
+ Process the dataset to generate questions for each set of grids
+
+ Args:
+ df: DataFrame with 'name' and 'spatial_dict' columns
+
+ Returns:
+ DataFrame with filename, question, answer columns
+ """
+ dataset = []
+
+ for idx, row in df.iterrows():
+ print(f"Processing {row['name']}")
+ generator = MultiGridQuestionGenerator(row['spatial_dict'])
+ questions = generator.generate_question_set(num_questions=random.randint(1, 5))
+
+ for q in questions:
+ q['filename'] = row['name']
+ q['sweep'] = row['sweep']
+ dataset.extend(questions)
+ print("=====================================")
+
+ return pd.DataFrame(dataset)[['filename', 'question', 'answer', 'sweep']]
+
+import ast
+
+df = pd.read_csv("visual_discrimination/sweep/visual_spatial/dataset_dump.csv")
+df['spatial_dict'] = df.apply(lambda x: ast.literal_eval(x['spatial_dict']), axis=1)
+df["sweep"] = df.apply(lambda x: ast.literal_eval(x["sweep"]), axis=1)
+
+dataset = process_dataset(df)
+
+dataset.to_csv("visual_discrimination/sweep/visual_spatial/dataset_info.csv", index=False)
\ No newline at end of file
diff --git a/3D_DoYouSeeMe/3D_color_and_shape_disambiguation/0.json b/3D_DoYouSeeMe/3D_color_and_shape_disambiguation/0.json
new file mode 100644
index 0000000000000000000000000000000000000000..9ed69a67894317975be9f2d2c9709187bf7a8024
--- /dev/null
+++ b/3D_DoYouSeeMe/3D_color_and_shape_disambiguation/0.json
@@ -0,0 +1,14 @@
+{
+ "scene": "skywalk",
+ "light": "middle",
+ "shape_counts": {
+ "torus": 1
+ },
+ "shape_color_counts": {
+ "('torus', 'yellow')": 1
+ },
+ "min_visibility": 0.7,
+ "num_objects": 1,
+ "num_shapes": 1,
+ "max_instances_per_shape": 1
+}
\ No newline at end of file
diff --git a/3D_DoYouSeeMe/3D_color_and_shape_disambiguation/0.png b/3D_DoYouSeeMe/3D_color_and_shape_disambiguation/0.png
new file mode 100644
index 0000000000000000000000000000000000000000..a1a80924233b7d5b9605486bc416dbb3d69beb8a
--- /dev/null
+++ b/3D_DoYouSeeMe/3D_color_and_shape_disambiguation/0.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:010a27531b91de08a7710147d6f28ef6b27e784dfe81966f0db2cddfa58297ad
+size 687109
diff --git a/3D_DoYouSeeMe/3D_color_and_shape_disambiguation/dataset_creator.py b/3D_DoYouSeeMe/3D_color_and_shape_disambiguation/dataset_creator.py
new file mode 100644
index 0000000000000000000000000000000000000000..05944b99fe280034f77401bc3f5729092963583b
--- /dev/null
+++ b/3D_DoYouSeeMe/3D_color_and_shape_disambiguation/dataset_creator.py
@@ -0,0 +1,87 @@
+# Copyright (c) Microsoft Corporation.
+# Licensed under the MIT license.
+
+import random
+import ast
+SEED=51
+random.seed(SEED)
+
+
+def generate_shape_color_question_and_answer(info):
+ """
+ Ask about a specific (shape, color) pair.
+
+ Returns:
+ question (str): e.g.
+ "In the scene 'skywalk' under 'middle' lighting, how many black cones are there?"
+ answer (int)
+ """
+ # parse the stringified keys into real tuples
+ parsed = {}
+ for k, count in info.get("shape_color_counts", {}).items():
+ shape, color = ast.literal_eval(k)
+ parsed[(shape, color)] = count
+
+ (shape, color), cnt = random.choice(list(parsed.items()))
+ question = (
+ f"In the scene, "
+ f"how many {color} {shape}'s are there?"
+ )
+ return question, cnt
+
+
+def generate_shape_question_and_answer(info):
+ """
+ Ask about the total number of a given shape, agnostic of color.
+
+ Returns:
+ question (str): e.g.
+ "In the scene 'skywalk' under 'middle' lighting, how many cones are there in total?"
+ answer (int)
+ """
+ # first try the provided shape_counts
+ shape_counts = info.get("shape_counts", {})
+
+ # fallback: aggregate from shape_color_counts if needed
+ if not shape_counts:
+ agg = {}
+ for k, count in info.get("shape_color_counts", {}).items():
+ shape, _ = ast.literal_eval(k)
+ agg[shape] = agg.get(shape, 0) + count
+ shape_counts = agg
+
+ shape, total = random.choice(list(shape_counts.items()))
+ question = (
+ f"In the scene, "
+ f"how many {shape}'s are there in total?"
+ )
+ return question, total
+
+import os
+import json
+
+base_dir = "3D_DoYouSeeMe/color_disambiguation"
+
+os.listdir(base_dir)
+
+data_list = []
+for filename in os.listdir(base_dir):
+ if filename.endswith(".json"):
+ # print(filename)
+ with open(os.path.join(base_dir, filename), "r") as f:
+ data = f.read()
+ data = json.loads(data)
+ q, a = generate_shape_color_question_and_answer(data)
+
+ num_shapes = data["num_shapes"]
+ max_instances_per_shape = data["max_instances_per_shape"]
+ min_visibility = data["min_visibility"]
+
+ data_list.append({"filename": os.path.splitext(filename)[0] + ".png",
+ "question": q,
+ "answer": a,
+ "sweep": [num_shapes, max_instances_per_shape, min_visibility]})
+
+import pandas as pd
+df = pd.DataFrame(data_list)
+df.to_csv(os.path.join(base_dir, "dataset_info.csv"), index=False)
\ No newline at end of file
diff --git a/3D_DoYouSeeMe/3D_color_and_shape_disambiguation/dataset_info.csv b/3D_DoYouSeeMe/3D_color_and_shape_disambiguation/dataset_info.csv
new file mode 100644
index 0000000000000000000000000000000000000000..8358a399ca3f09d55a0a33ead7620ed79dc27c93
--- /dev/null
+++ b/3D_DoYouSeeMe/3D_color_and_shape_disambiguation/dataset_info.csv
@@ -0,0 +1,121 @@
+filename,question,answer,sweep
+66.png,"In the scene, how many white cylinder's are there?",1,"[3, 3, 0.8]"
+56.png,"In the scene, how many red cone's are there?",1,"[3, 2, 0.7]"
+43.png,"In the scene, how many black cube's are there?",1,"[2, 3, 0.8]"
+19.png,"In the scene, how many white torus's are there?",3,"[1, 3, 0.8]"
+6.png,"In the scene, how many black cylinder's are there?",1,"[1, 1, 0.99]"
+119.png,"In the scene, how many yellow cylinder's are there?",1,"[5, 3, 0.99]"
+94.png,"In the scene, how many black sphere's are there?",1,"[4, 3, 0.99]"
+11.png,"In the scene, how many yellow sphere's are there?",1,"[1, 2, 0.8]"
+76.png,"In the scene, how many black cube's are there?",1,"[4, 1, 0.9]"
+100.png,"In the scene, how many red sphere's are there?",1,"[5, 1, 0.9]"
+26.png,"In the scene, how many red sphere's are there?",1,"[2, 1, 0.8]"
+59.png,"In the scene, how many blue torus's are there?",1,"[3, 2, 0.8]"
+1.png,"In the scene, how many red cube's are there?",1,"[1, 1, 0.7]"
+23.png,"In the scene, how many red cylinder's are there?",1,"[1, 3, 0.99]"
+8.png,"In the scene, how many red cone's are there?",1,"[1, 2, 0.7]"
+50.png,"In the scene, how many red torus's are there?",1,"[3, 1, 0.8]"
+101.png,"In the scene, how many white sphere's are there?",1,"[5, 1, 0.9]"
+72.png,"In the scene, how many white sphere's are there?",1,"[4, 1, 0.7]"
+83.png,"In the scene, how many black sphere's are there?",2,"[4, 2, 0.8]"
+77.png,"In the scene, how many blue sphere's are there?",1,"[4, 1, 0.9]"
+89.png,"In the scene, how many blue torus's are there?",2,"[4, 3, 0.7]"
+48.png,"In the scene, how many red cube's are there?",1,"[3, 1, 0.7]"
+17.png,"In the scene, how many black sphere's are there?",1,"[1, 3, 0.7]"
+58.png,"In the scene, how many black sphere's are there?",2,"[3, 2, 0.8]"
+7.png,"In the scene, how many black sphere's are there?",1,"[1, 1, 0.99]"
+103.png,"In the scene, how many blue torus's are there?",1,"[5, 1, 0.99]"
+90.png,"In the scene, how many red cone's are there?",1,"[4, 3, 0.8]"
+54.png,"In the scene, how many yellow torus's are there?",1,"[3, 1, 0.99]"
+32.png,"In the scene, how many red sphere's are there?",1,"[2, 2, 0.7]"
+82.png,"In the scene, how many black cone's are there?",1,"[4, 2, 0.8]"
+97.png,"In the scene, how many blue sphere's are there?",1,"[5, 1, 0.7]"
+81.png,"In the scene, how many yellow sphere's are there?",1,"[4, 2, 0.7]"
+55.png,"In the scene, how many yellow cone's are there?",1,"[3, 1, 0.99]"
+63.png,"In the scene, how many white cylinder's are there?",1,"[3, 2, 0.99]"
+84.png,"In the scene, how many black cone's are there?",1,"[4, 2, 0.9]"
+28.png,"In the scene, how many white cone's are there?",1,"[2, 1, 0.9]"
+39.png,"In the scene, how many black torus's are there?",2,"[2, 2, 0.99]"
+98.png,"In the scene, how many red cylinder's are there?",1,"[5, 1, 0.8]"
+86.png,"In the scene, how many white cube's are there?",1,"[4, 2, 0.99]"
+41.png,"In the scene, how many blue sphere's are there?",1,"[2, 3, 0.7]"
+78.png,"In the scene, how many red cylinder's are there?",1,"[4, 1, 0.99]"
+36.png,"In the scene, how many yellow sphere's are there?",1,"[2, 2, 0.9]"
+111.png,"In the scene, how many yellow sphere's are there?",1,"[5, 2, 0.99]"
+46.png,"In the scene, how many black torus's are there?",1,"[2, 3, 0.99]"
+69.png,"In the scene, how many white torus's are there?",1,"[3, 3, 0.9]"
+64.png,"In the scene, how many blue cylinder's are there?",1,"[3, 3, 0.7]"
+9.png,"In the scene, how many white cone's are there?",1,"[1, 2, 0.7]"
+107.png,"In the scene, how many red cube's are there?",1,"[5, 2, 0.8]"
+15.png,"In the scene, how many black cylinder's are there?",1,"[1, 2, 0.99]"
+106.png,"In the scene, how many red sphere's are there?",1,"[5, 2, 0.8]"
+112.png,"In the scene, how many yellow cone's are there?",2,"[5, 3, 0.7]"
+51.png,"In the scene, how many black sphere's are there?",1,"[3, 1, 0.8]"
+113.png,"In the scene, how many red cone's are there?",1,"[5, 3, 0.7]"
+29.png,"In the scene, how many yellow sphere's are there?",1,"[2, 1, 0.9]"
+95.png,"In the scene, how many yellow cylinder's are there?",1,"[4, 3, 0.99]"
+75.png,"In the scene, how many yellow cone's are there?",1,"[4, 1, 0.8]"
+108.png,"In the scene, how many yellow cube's are there?",1,"[5, 2, 0.9]"
+117.png,"In the scene, how many white cylinder's are there?",1,"[5, 3, 0.9]"
+31.png,"In the scene, how many white cube's are there?",1,"[2, 1, 0.99]"
+87.png,"In the scene, how many red cylinder's are there?",1,"[4, 2, 0.99]"
+42.png,"In the scene, how many black torus's are there?",1,"[2, 3, 0.8]"
+116.png,"In the scene, how many red torus's are there?",1,"[5, 3, 0.9]"
+61.png,"In the scene, how many white torus's are there?",1,"[3, 2, 0.9]"
+53.png,"In the scene, how many white sphere's are there?",1,"[3, 1, 0.9]"
+44.png,"In the scene, how many yellow cone's are there?",1,"[2, 3, 0.9]"
+62.png,"In the scene, how many black cone's are there?",1,"[3, 2, 0.99]"
+68.png,"In the scene, how many red cube's are there?",1,"[3, 3, 0.9]"
+65.png,"In the scene, how many red cone's are there?",2,"[3, 3, 0.7]"
+67.png,"In the scene, how many blue cube's are there?",2,"[3, 3, 0.8]"
+22.png,"In the scene, how many black cone's are there?",1,"[1, 3, 0.99]"
+105.png,"In the scene, how many white cylinder's are there?",1,"[5, 2, 0.7]"
+70.png,"In the scene, how many blue sphere's are there?",1,"[3, 3, 0.99]"
+115.png,"In the scene, how many red cube's are there?",1,"[5, 3, 0.8]"
+93.png,"In the scene, how many red cube's are there?",1,"[4, 3, 0.9]"
+88.png,"In the scene, how many black cone's are there?",1,"[4, 3, 0.7]"
+73.png,"In the scene, how many yellow cylinder's are there?",1,"[4, 1, 0.7]"
+110.png,"In the scene, how many yellow cone's are there?",1,"[5, 2, 0.99]"
+45.png,"In the scene, how many red torus's are there?",2,"[2, 3, 0.9]"
+99.png,"In the scene, how many blue sphere's are there?",1,"[5, 1, 0.8]"
+30.png,"In the scene, how many red cone's are there?",1,"[2, 1, 0.99]"
+0.png,"In the scene, how many yellow torus's are there?",1,"[1, 1, 0.7]"
+21.png,"In the scene, how many white torus's are there?",1,"[1, 3, 0.9]"
+16.png,"In the scene, how many black cone's are there?",1,"[1, 3, 0.7]"
+52.png,"In the scene, how many red cylinder's are there?",1,"[3, 1, 0.9]"
+25.png,"In the scene, how many yellow cube's are there?",1,"[2, 1, 0.7]"
+18.png,"In the scene, how many red sphere's are there?",2,"[1, 3, 0.8]"
+40.png,"In the scene, how many black torus's are there?",1,"[2, 3, 0.7]"
+35.png,"In the scene, how many white cylinder's are there?",1,"[2, 2, 0.8]"
+38.png,"In the scene, how many black cylinder's are there?",1,"[2, 2, 0.99]"
+74.png,"In the scene, how many black sphere's are there?",1,"[4, 1, 0.8]"
+34.png,"In the scene, how many yellow cone's are there?",1,"[2, 2, 0.8]"
+80.png,"In the scene, how many red cone's are there?",1,"[4, 2, 0.7]"
+109.png,"In the scene, how many yellow sphere's are there?",1,"[5, 2, 0.9]"
+96.png,"In the scene, how many white sphere's are there?",1,"[5, 1, 0.7]"
+104.png,"In the scene, how many blue cube's are there?",1,"[5, 2, 0.7]"
+10.png,"In the scene, how many white cylinder's are there?",1,"[1, 2, 0.8]"
+71.png,"In the scene, how many black cube's are there?",1,"[3, 3, 0.99]"
+47.png,"In the scene, how many blue cube's are there?",1,"[2, 3, 0.99]"
+13.png,"In the scene, how many black cube's are there?",1,"[1, 2, 0.9]"
+85.png,"In the scene, how many red cone's are there?",1,"[4, 2, 0.9]"
+37.png,"In the scene, how many yellow cube's are there?",1,"[2, 2, 0.9]"
+5.png,"In the scene, how many red sphere's are there?",1,"[1, 1, 0.9]"
+33.png,"In the scene, how many yellow sphere's are there?",1,"[2, 2, 0.7]"
+92.png,"In the scene, how many yellow torus's are there?",1,"[4, 3, 0.9]"
+2.png,"In the scene, how many blue cube's are there?",1,"[1, 1, 0.8]"
+27.png,"In the scene, how many black sphere's are there?",1,"[2, 1, 0.8]"
+49.png,"In the scene, how many yellow sphere's are there?",1,"[3, 1, 0.7]"
+4.png,"In the scene, how many red cube's are there?",1,"[1, 1, 0.9]"
+24.png,"In the scene, how many blue cylinder's are there?",1,"[2, 1, 0.7]"
+3.png,"In the scene, how many yellow cone's are there?",1,"[1, 1, 0.8]"
+118.png,"In the scene, how many white torus's are there?",1,"[5, 3, 0.99]"
+102.png,"In the scene, how many black cube's are there?",1,"[5, 1, 0.99]"
+20.png,"In the scene, how many blue cylinder's are there?",1,"[1, 3, 0.9]"
+57.png,"In the scene, how many black torus's are there?",1,"[3, 2, 0.7]"
+79.png,"In the scene, how many red cylinder's are there?",1,"[4, 1, 0.99]"
+12.png,"In the scene, how many red cone's are there?",1,"[1, 2, 0.9]"
+60.png,"In the scene, how many blue cube's are there?",1,"[3, 2, 0.9]"
+91.png,"In the scene, how many red cylinder's are there?",1,"[4, 3, 0.8]"
+114.png,"In the scene, how many black cylinder's are there?",2,"[5, 3, 0.8]"
+14.png,"In the scene, how many blue sphere's are there?",1,"[1, 2, 0.99]"
diff --git a/3D_DoYouSeeMe/3D_letter_disambiguation/0.json b/3D_DoYouSeeMe/3D_letter_disambiguation/0.json
new file mode 100644
index 0000000000000000000000000000000000000000..1691a680b31374bcc7aa0400823a624952e4e8c9
--- /dev/null
+++ b/3D_DoYouSeeMe/3D_letter_disambiguation/0.json
@@ -0,0 +1,12 @@
+{
+ "scene": "street",
+ "light": "left",
+ "dot_type": "sphere",
+ "dot_size": 0.05,
+ "spacing": 0.4,
+ "dot_color": "red",
+ "background_dots": false,
+ "letters": [
+ "T"
+ ]
+}
\ No newline at end of file
diff --git a/3D_DoYouSeeMe/3D_letter_disambiguation/0.png b/3D_DoYouSeeMe/3D_letter_disambiguation/0.png
new file mode 100644
index 0000000000000000000000000000000000000000..05db351fcff06ffaebf581ba2ec7ced92e56888d
--- /dev/null
+++ b/3D_DoYouSeeMe/3D_letter_disambiguation/0.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:84caf3bafe254ad20df3be99b6fa77a85f342a062868d3a4c8e958edb77fd1ec
+size 739538
diff --git a/3D_DoYouSeeMe/3D_letter_disambiguation/dataset_creator.py b/3D_DoYouSeeMe/3D_letter_disambiguation/dataset_creator.py
new file mode 100644
index 0000000000000000000000000000000000000000..ff34ceb0d0e69b486e8d4458543c79a89bbe5d44
--- /dev/null
+++ b/3D_DoYouSeeMe/3D_letter_disambiguation/dataset_creator.py
@@ -0,0 +1,50 @@
+# Copyright (c) Microsoft Corporation.
+# Licensed under the MIT license.
+
+# variation, dot_size, spacing, letter_number
+import os
+import pandas as pd
+import json
+
+# {
+# "scene": "skywalk",
+# "light": "left",
+# "dot_type": "cylinder",
+# "dot_size": 0.14,
+# "spacing": 0.5,
+# "dot_color": "red",
+# "background_dots": false,
+# "letters": [
+# "Q",
+# "P"
+# ]
+# }
+
+base_dir = "3D_DoYouSeeMe/letter_disambiguation"
+
+files = os.listdir(base_dir)
+
+data_list = []
+for file in files:
+ if file.endswith(".json"):
+ with open(os.path.join(base_dir, file), "r") as f:
+ data = f.read()
+ data = json.loads(data)
+
+ question = "In the scene, which letters do you see from left to right?"
+ letters = data["letters"]
+ answer = "".join(letters)
+
+ variation = data["dot_type"]
+ dot_size = data["dot_size"]
+ spacing = data["spacing"]
+ num_letters = len(letters)
+ data_list.append({
+ "filename": os.path.splitext(file)[0] + ".png",
+ "question": question,
+ "answer": answer,
+ "sweep": [variation, dot_size, spacing, num_letters]
+ })
+
+df = pd.DataFrame(data_list)
+df.to_csv(os.path.join(base_dir, "dataset_info.csv"), index=False)
\ No newline at end of file
diff --git a/3D_DoYouSeeMe/3D_letter_disambiguation/dataset_info.csv b/3D_DoYouSeeMe/3D_letter_disambiguation/dataset_info.csv
new file mode 100644
index 0000000000000000000000000000000000000000..6443512ef9a74870c2f05ec7be72769beffaad3b
--- /dev/null
+++ b/3D_DoYouSeeMe/3D_letter_disambiguation/dataset_info.csv
@@ -0,0 +1,97 @@
+filename,question,answer,sweep
+66.png,"In the scene, which letters do you see from left to right?",BX,"['cylinder', 0.05, 0.4, 2]"
+56.png,"In the scene, which letters do you see from left to right?",H,"['cube', 0.14, 0.4, 1]"
+43.png,"In the scene, which letters do you see from left to right?",PI,"['cube', 0.08, 0.4, 2]"
+19.png,"In the scene, which letters do you see from left to right?",UY,"['sphere', 0.11, 0.4, 2]"
+6.png,"In the scene, which letters do you see from left to right?",UW,"['sphere', 0.05, 0.5, 2]"
+94.png,"In the scene, which letters do you see from left to right?",QP,"['cylinder', 0.14, 0.5, 2]"
+11.png,"In the scene, which letters do you see from left to right?",FB,"['sphere', 0.08, 0.4, 2]"
+76.png,"In the scene, which letters do you see from left to right?",C,"['cylinder', 0.08, 0.5, 1]"
+26.png,"In the scene, which letters do you see from left to right?",AK,"['sphere', 0.14, 0.4, 2]"
+59.png,"In the scene, which letters do you see from left to right?",ZR,"['cube', 0.14, 0.4, 2]"
+1.png,"In the scene, which letters do you see from left to right?",L,"['sphere', 0.05, 0.4, 1]"
+23.png,"In the scene, which letters do you see from left to right?",RY,"['sphere', 0.11, 0.5, 2]"
+8.png,"In the scene, which letters do you see from left to right?",M,"['sphere', 0.08, 0.4, 1]"
+50.png,"In the scene, which letters do you see from left to right?",WB,"['cube', 0.11, 0.4, 2]"
+72.png,"In the scene, which letters do you see from left to right?",N,"['cylinder', 0.08, 0.4, 1]"
+83.png,"In the scene, which letters do you see from left to right?",EC,"['cylinder', 0.11, 0.4, 2]"
+77.png,"In the scene, which letters do you see from left to right?",Z,"['cylinder', 0.08, 0.5, 1]"
+89.png,"In the scene, which letters do you see from left to right?",O,"['cylinder', 0.14, 0.4, 1]"
+48.png,"In the scene, which letters do you see from left to right?",X,"['cube', 0.11, 0.4, 1]"
+17.png,"In the scene, which letters do you see from left to right?",V,"['sphere', 0.11, 0.4, 1]"
+58.png,"In the scene, which letters do you see from left to right?",PJ,"['cube', 0.14, 0.4, 2]"
+7.png,"In the scene, which letters do you see from left to right?",ER,"['sphere', 0.05, 0.5, 2]"
+90.png,"In the scene, which letters do you see from left to right?",AV,"['cylinder', 0.14, 0.4, 2]"
+54.png,"In the scene, which letters do you see from left to right?",UV,"['cube', 0.11, 0.5, 2]"
+32.png,"In the scene, which letters do you see from left to right?",T,"['cube', 0.05, 0.4, 1]"
+82.png,"In the scene, which letters do you see from left to right?",ZZ,"['cylinder', 0.11, 0.4, 2]"
+81.png,"In the scene, which letters do you see from left to right?",G,"['cylinder', 0.11, 0.4, 1]"
+55.png,"In the scene, which letters do you see from left to right?",RR,"['cube', 0.11, 0.5, 2]"
+63.png,"In the scene, which letters do you see from left to right?",UH,"['cube', 0.14, 0.5, 2]"
+84.png,"In the scene, which letters do you see from left to right?",C,"['cylinder', 0.11, 0.5, 1]"
+28.png,"In the scene, which letters do you see from left to right?",K,"['sphere', 0.14, 0.5, 1]"
+39.png,"In the scene, which letters do you see from left to right?",QO,"['cube', 0.05, 0.5, 2]"
+86.png,"In the scene, which letters do you see from left to right?",NK,"['cylinder', 0.11, 0.5, 2]"
+41.png,"In the scene, which letters do you see from left to right?",D,"['cube', 0.08, 0.4, 1]"
+78.png,"In the scene, which letters do you see from left to right?",OQ,"['cylinder', 0.08, 0.5, 2]"
+36.png,"In the scene, which letters do you see from left to right?",M,"['cube', 0.05, 0.5, 1]"
+46.png,"In the scene, which letters do you see from left to right?",AP,"['cube', 0.08, 0.5, 2]"
+69.png,"In the scene, which letters do you see from left to right?",H,"['cylinder', 0.05, 0.5, 1]"
+64.png,"In the scene, which letters do you see from left to right?",B,"['cylinder', 0.05, 0.4, 1]"
+9.png,"In the scene, which letters do you see from left to right?",A,"['sphere', 0.08, 0.4, 1]"
+15.png,"In the scene, which letters do you see from left to right?",NR,"['sphere', 0.08, 0.5, 2]"
+51.png,"In the scene, which letters do you see from left to right?",AU,"['cube', 0.11, 0.4, 2]"
+29.png,"In the scene, which letters do you see from left to right?",N,"['sphere', 0.14, 0.5, 1]"
+95.png,"In the scene, which letters do you see from left to right?",KR,"['cylinder', 0.14, 0.5, 2]"
+75.png,"In the scene, which letters do you see from left to right?",JR,"['cylinder', 0.08, 0.4, 2]"
+31.png,"In the scene, which letters do you see from left to right?",WB,"['sphere', 0.14, 0.5, 2]"
+87.png,"In the scene, which letters do you see from left to right?",LW,"['cylinder', 0.11, 0.5, 2]"
+42.png,"In the scene, which letters do you see from left to right?",OX,"['cube', 0.08, 0.4, 2]"
+61.png,"In the scene, which letters do you see from left to right?",T,"['cube', 0.14, 0.5, 1]"
+53.png,"In the scene, which letters do you see from left to right?",P,"['cube', 0.11, 0.5, 1]"
+44.png,"In the scene, which letters do you see from left to right?",Z,"['cube', 0.08, 0.5, 1]"
+62.png,"In the scene, which letters do you see from left to right?",GU,"['cube', 0.14, 0.5, 2]"
+68.png,"In the scene, which letters do you see from left to right?",Z,"['cylinder', 0.05, 0.5, 1]"
+65.png,"In the scene, which letters do you see from left to right?",V,"['cylinder', 0.05, 0.4, 1]"
+67.png,"In the scene, which letters do you see from left to right?",OC,"['cylinder', 0.05, 0.4, 2]"
+22.png,"In the scene, which letters do you see from left to right?",EO,"['sphere', 0.11, 0.5, 2]"
+70.png,"In the scene, which letters do you see from left to right?",SJ,"['cylinder', 0.05, 0.5, 2]"
+93.png,"In the scene, which letters do you see from left to right?",Z,"['cylinder', 0.14, 0.5, 1]"
+88.png,"In the scene, which letters do you see from left to right?",R,"['cylinder', 0.14, 0.4, 1]"
+73.png,"In the scene, which letters do you see from left to right?",M,"['cylinder', 0.08, 0.4, 1]"
+45.png,"In the scene, which letters do you see from left to right?",U,"['cube', 0.08, 0.5, 1]"
+30.png,"In the scene, which letters do you see from left to right?",IK,"['sphere', 0.14, 0.5, 2]"
+0.png,"In the scene, which letters do you see from left to right?",T,"['sphere', 0.05, 0.4, 1]"
+21.png,"In the scene, which letters do you see from left to right?",T,"['sphere', 0.11, 0.5, 1]"
+16.png,"In the scene, which letters do you see from left to right?",Y,"['sphere', 0.11, 0.4, 1]"
+52.png,"In the scene, which letters do you see from left to right?",Y,"['cube', 0.11, 0.5, 1]"
+25.png,"In the scene, which letters do you see from left to right?",O,"['sphere', 0.14, 0.4, 1]"
+18.png,"In the scene, which letters do you see from left to right?",BZ,"['sphere', 0.11, 0.4, 2]"
+40.png,"In the scene, which letters do you see from left to right?",M,"['cube', 0.08, 0.4, 1]"
+35.png,"In the scene, which letters do you see from left to right?",BE,"['cube', 0.05, 0.4, 2]"
+38.png,"In the scene, which letters do you see from left to right?",ZP,"['cube', 0.05, 0.5, 2]"
+74.png,"In the scene, which letters do you see from left to right?",FM,"['cylinder', 0.08, 0.4, 2]"
+34.png,"In the scene, which letters do you see from left to right?",EO,"['cube', 0.05, 0.4, 2]"
+80.png,"In the scene, which letters do you see from left to right?",B,"['cylinder', 0.11, 0.4, 1]"
+10.png,"In the scene, which letters do you see from left to right?",IW,"['sphere', 0.08, 0.4, 2]"
+71.png,"In the scene, which letters do you see from left to right?",NP,"['cylinder', 0.05, 0.5, 2]"
+47.png,"In the scene, which letters do you see from left to right?",NK,"['cube', 0.08, 0.5, 2]"
+13.png,"In the scene, which letters do you see from left to right?",K,"['sphere', 0.08, 0.5, 1]"
+85.png,"In the scene, which letters do you see from left to right?",D,"['cylinder', 0.11, 0.5, 1]"
+37.png,"In the scene, which letters do you see from left to right?",E,"['cube', 0.05, 0.5, 1]"
+5.png,"In the scene, which letters do you see from left to right?",H,"['sphere', 0.05, 0.5, 1]"
+33.png,"In the scene, which letters do you see from left to right?",P,"['cube', 0.05, 0.4, 1]"
+92.png,"In the scene, which letters do you see from left to right?",V,"['cylinder', 0.14, 0.5, 1]"
+2.png,"In the scene, which letters do you see from left to right?",UK,"['sphere', 0.05, 0.4, 2]"
+27.png,"In the scene, which letters do you see from left to right?",SF,"['sphere', 0.14, 0.4, 2]"
+49.png,"In the scene, which letters do you see from left to right?",T,"['cube', 0.11, 0.4, 1]"
+4.png,"In the scene, which letters do you see from left to right?",W,"['sphere', 0.05, 0.5, 1]"
+24.png,"In the scene, which letters do you see from left to right?",T,"['sphere', 0.14, 0.4, 1]"
+3.png,"In the scene, which letters do you see from left to right?",EK,"['sphere', 0.05, 0.4, 2]"
+20.png,"In the scene, which letters do you see from left to right?",M,"['sphere', 0.11, 0.5, 1]"
+57.png,"In the scene, which letters do you see from left to right?",H,"['cube', 0.14, 0.4, 1]"
+79.png,"In the scene, which letters do you see from left to right?",GA,"['cylinder', 0.08, 0.5, 2]"
+12.png,"In the scene, which letters do you see from left to right?",B,"['sphere', 0.08, 0.5, 1]"
+60.png,"In the scene, which letters do you see from left to right?",X,"['cube', 0.14, 0.5, 1]"
+91.png,"In the scene, which letters do you see from left to right?",GF,"['cylinder', 0.14, 0.4, 2]"
+14.png,"In the scene, which letters do you see from left to right?",YW,"['sphere', 0.08, 0.5, 2]"
\ No newline at end of file
diff --git a/3D_DoYouSeeMe/3D_shape_discrimination/0.json b/3D_DoYouSeeMe/3D_shape_discrimination/0.json
new file mode 100644
index 0000000000000000000000000000000000000000..9ed69a67894317975be9f2d2c9709187bf7a8024
--- /dev/null
+++ b/3D_DoYouSeeMe/3D_shape_discrimination/0.json
@@ -0,0 +1,14 @@
+{
+ "scene": "skywalk",
+ "light": "middle",
+ "shape_counts": {
+ "torus": 1
+ },
+ "shape_color_counts": {
+ "('torus', 'yellow')": 1
+ },
+ "min_visibility": 0.7,
+ "num_objects": 1,
+ "num_shapes": 1,
+ "max_instances_per_shape": 1
+}
\ No newline at end of file
diff --git a/3D_DoYouSeeMe/3D_shape_discrimination/0.png b/3D_DoYouSeeMe/3D_shape_discrimination/0.png
new file mode 100644
index 0000000000000000000000000000000000000000..a1a80924233b7d5b9605486bc416dbb3d69beb8a
--- /dev/null
+++ b/3D_DoYouSeeMe/3D_shape_discrimination/0.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:010a27531b91de08a7710147d6f28ef6b27e784dfe81966f0db2cddfa58297ad
+size 687109
diff --git a/3D_DoYouSeeMe/3D_shape_discrimination/dataset_creator.py b/3D_DoYouSeeMe/3D_shape_discrimination/dataset_creator.py
new file mode 100644
index 0000000000000000000000000000000000000000..c2885618385a47f87f3f6b484bbecf74c3a84241
--- /dev/null
+++ b/3D_DoYouSeeMe/3D_shape_discrimination/dataset_creator.py
@@ -0,0 +1,87 @@
+# Copyright (c) Microsoft Corporation.
+# Licensed under the MIT license.
+
+import random
+import ast
+SEED=42
+random.seed(SEED)
+
+
+def generate_shape_color_question_and_answer(info):
+ """
+ Ask about a specific (shape, color) pair.
+
+ Returns:
+ question (str): e.g.
+ "In the scene 'skywalk' under 'middle' lighting, how many black cones are there?"
+ answer (int)
+ """
+ # parse the stringified keys into real tuples
+ parsed = {}
+ for k, count in info.get("shape_color_counts", {}).items():
+ shape, color = ast.literal_eval(k)
+ parsed[(shape, color)] = count
+
+ (shape, color), cnt = random.choice(list(parsed.items()))
+ question = (
+ f"In the scene, "
+ f"how many {color} {shape}'s are there?"
+ )
+ return question, cnt
+
+
+def generate_shape_question_and_answer(info):
+ """
+ Ask about the total number of a given shape, agnostic of color.
+
+ Returns:
+ question (str): e.g.
+ "In the scene 'skywalk' under 'middle' lighting, how many cones are there in total?"
+ answer (int)
+ """
+ # first try the provided shape_counts
+ shape_counts = info.get("shape_counts", {})
+
+ # fallback: aggregate from shape_color_counts if needed
+ if not shape_counts:
+ agg = {}
+ for k, count in info.get("shape_color_counts", {}).items():
+ shape, _ = ast.literal_eval(k)
+ agg[shape] = agg.get(shape, 0) + count
+ shape_counts = agg
+
+ shape, total = random.choice(list(shape_counts.items()))
+ question = (
+ f"In the scene, "
+ f"how many {shape}'s are there in total?"
+ )
+ return question, total
+
+import os
+import json
+
+base_dir = "3D_DoYouSeeMe/shape_discrimination"
+
+os.listdir(base_dir)
+
+data_list = []
+for filename in os.listdir(base_dir):
+ if filename.endswith(".json"):
+ # print(filename)
+ with open(os.path.join(base_dir, filename), "r") as f:
+ data = f.read()
+ data = json.loads(data)
+ q, a = generate_shape_question_and_answer(data)
+
+ num_shapes = data["num_shapes"]
+ max_instances_per_shape = data["max_instances_per_shape"]
+ min_visibility = data["min_visibility"]
+
+ data_list.append({"filename": os.path.splitext(filename)[0] + ".png",
+ "question": q,
+ "answer": a,
+ "sweep": [num_shapes, max_instances_per_shape, min_visibility]})
+
+import pandas as pd
+df = pd.DataFrame(data_list)
+df.to_csv(os.path.join(base_dir, "dataset_info.csv"), index=False)
\ No newline at end of file
diff --git a/3D_DoYouSeeMe/3D_shape_discrimination/dataset_info.csv b/3D_DoYouSeeMe/3D_shape_discrimination/dataset_info.csv
new file mode 100644
index 0000000000000000000000000000000000000000..1a6c36503920ab5ccb90d906246e66dcaecc5ad8
--- /dev/null
+++ b/3D_DoYouSeeMe/3D_shape_discrimination/dataset_info.csv
@@ -0,0 +1,121 @@
+filename,question,answer,sweep
+66.png,"In the scene, how many sphere's are there in total?",3,"[3, 3, 0.8]"
+56.png,"In the scene, how many sphere's are there in total?",2,"[3, 2, 0.7]"
+43.png,"In the scene, how many sphere's are there in total?",2,"[2, 3, 0.8]"
+19.png,"In the scene, how many torus's are there in total?",3,"[1, 3, 0.8]"
+6.png,"In the scene, how many cylinder's are there in total?",1,"[1, 1, 0.99]"
+119.png,"In the scene, how many cube's are there in total?",2,"[5, 3, 0.99]"
+94.png,"In the scene, how many torus's are there in total?",2,"[4, 3, 0.99]"
+11.png,"In the scene, how many sphere's are there in total?",1,"[1, 2, 0.8]"
+76.png,"In the scene, how many sphere's are there in total?",1,"[4, 1, 0.9]"
+100.png,"In the scene, how many sphere's are there in total?",1,"[5, 1, 0.9]"
+26.png,"In the scene, how many sphere's are there in total?",1,"[2, 1, 0.8]"
+59.png,"In the scene, how many sphere's are there in total?",1,"[3, 2, 0.8]"
+1.png,"In the scene, how many cube's are there in total?",1,"[1, 1, 0.7]"
+23.png,"In the scene, how many cylinder's are there in total?",1,"[1, 3, 0.99]"
+8.png,"In the scene, how many cone's are there in total?",1,"[1, 2, 0.7]"
+50.png,"In the scene, how many cylinder's are there in total?",1,"[3, 1, 0.8]"
+101.png,"In the scene, how many cylinder's are there in total?",1,"[5, 1, 0.9]"
+72.png,"In the scene, how many sphere's are there in total?",1,"[4, 1, 0.7]"
+83.png,"In the scene, how many torus's are there in total?",1,"[4, 2, 0.8]"
+77.png,"In the scene, how many torus's are there in total?",1,"[4, 1, 0.9]"
+89.png,"In the scene, how many cube's are there in total?",2,"[4, 3, 0.7]"
+48.png,"In the scene, how many cube's are there in total?",1,"[3, 1, 0.7]"
+17.png,"In the scene, how many sphere's are there in total?",1,"[1, 3, 0.7]"
+58.png,"In the scene, how many cube's are there in total?",1,"[3, 2, 0.8]"
+7.png,"In the scene, how many sphere's are there in total?",1,"[1, 1, 0.99]"
+103.png,"In the scene, how many sphere's are there in total?",1,"[5, 1, 0.99]"
+90.png,"In the scene, how many cone's are there in total?",3,"[4, 3, 0.8]"
+54.png,"In the scene, how many cube's are there in total?",1,"[3, 1, 0.99]"
+32.png,"In the scene, how many sphere's are there in total?",1,"[2, 2, 0.7]"
+82.png,"In the scene, how many cylinder's are there in total?",2,"[4, 2, 0.8]"
+97.png,"In the scene, how many cylinder's are there in total?",1,"[5, 1, 0.7]"
+81.png,"In the scene, how many cube's are there in total?",1,"[4, 2, 0.7]"
+55.png,"In the scene, how many cube's are there in total?",1,"[3, 1, 0.99]"
+63.png,"In the scene, how many cube's are there in total?",2,"[3, 2, 0.99]"
+84.png,"In the scene, how many cone's are there in total?",1,"[4, 2, 0.9]"
+28.png,"In the scene, how many cylinder's are there in total?",1,"[2, 1, 0.9]"
+39.png,"In the scene, how many torus's are there in total?",2,"[2, 2, 0.99]"
+98.png,"In the scene, how many cylinder's are there in total?",1,"[5, 1, 0.8]"
+86.png,"In the scene, how many sphere's are there in total?",2,"[4, 2, 0.99]"
+41.png,"In the scene, how many sphere's are there in total?",2,"[2, 3, 0.7]"
+78.png,"In the scene, how many cylinder's are there in total?",1,"[4, 1, 0.99]"
+36.png,"In the scene, how many sphere's are there in total?",1,"[2, 2, 0.9]"
+111.png,"In the scene, how many cylinder's are there in total?",2,"[5, 2, 0.99]"
+46.png,"In the scene, how many cone's are there in total?",1,"[2, 3, 0.99]"
+69.png,"In the scene, how many torus's are there in total?",3,"[3, 3, 0.9]"
+64.png,"In the scene, how many torus's are there in total?",1,"[3, 3, 0.7]"
+9.png,"In the scene, how many cone's are there in total?",1,"[1, 2, 0.7]"
+107.png,"In the scene, how many torus's are there in total?",2,"[5, 2, 0.8]"
+15.png,"In the scene, how many cylinder's are there in total?",1,"[1, 2, 0.99]"
+106.png,"In the scene, how many torus's are there in total?",2,"[5, 2, 0.8]"
+112.png,"In the scene, how many sphere's are there in total?",1,"[5, 3, 0.7]"
+51.png,"In the scene, how many sphere's are there in total?",1,"[3, 1, 0.8]"
+113.png,"In the scene, how many sphere's are there in total?",2,"[5, 3, 0.7]"
+29.png,"In the scene, how many sphere's are there in total?",1,"[2, 1, 0.9]"
+95.png,"In the scene, how many cone's are there in total?",1,"[4, 3, 0.99]"
+75.png,"In the scene, how many torus's are there in total?",1,"[4, 1, 0.8]"
+108.png,"In the scene, how many sphere's are there in total?",2,"[5, 2, 0.9]"
+117.png,"In the scene, how many cone's are there in total?",3,"[5, 3, 0.9]"
+31.png,"In the scene, how many cube's are there in total?",1,"[2, 1, 0.99]"
+87.png,"In the scene, how many sphere's are there in total?",1,"[4, 2, 0.99]"
+42.png,"In the scene, how many torus's are there in total?",2,"[2, 3, 0.8]"
+116.png,"In the scene, how many sphere's are there in total?",1,"[5, 3, 0.9]"
+61.png,"In the scene, how many sphere's are there in total?",2,"[3, 2, 0.9]"
+53.png,"In the scene, how many sphere's are there in total?",1,"[3, 1, 0.9]"
+44.png,"In the scene, how many cone's are there in total?",1,"[2, 3, 0.9]"
+62.png,"In the scene, how many cone's are there in total?",1,"[3, 2, 0.99]"
+68.png,"In the scene, how many cube's are there in total?",1,"[3, 3, 0.9]"
+65.png,"In the scene, how many cone's are there in total?",3,"[3, 3, 0.7]"
+67.png,"In the scene, how many sphere's are there in total?",1,"[3, 3, 0.8]"
+22.png,"In the scene, how many cone's are there in total?",2,"[1, 3, 0.99]"
+105.png,"In the scene, how many torus's are there in total?",1,"[5, 2, 0.7]"
+70.png,"In the scene, how many sphere's are there in total?",2,"[3, 3, 0.99]"
+115.png,"In the scene, how many torus's are there in total?",3,"[5, 3, 0.8]"
+93.png,"In the scene, how many torus's are there in total?",3,"[4, 3, 0.9]"
+88.png,"In the scene, how many sphere's are there in total?",3,"[4, 3, 0.7]"
+73.png,"In the scene, how many cylinder's are there in total?",1,"[4, 1, 0.7]"
+110.png,"In the scene, how many cube's are there in total?",1,"[5, 2, 0.99]"
+45.png,"In the scene, how many cone's are there in total?",1,"[2, 3, 0.9]"
+99.png,"In the scene, how many cube's are there in total?",1,"[5, 1, 0.8]"
+30.png,"In the scene, how many cube's are there in total?",1,"[2, 1, 0.99]"
+0.png,"In the scene, how many torus's are there in total?",1,"[1, 1, 0.7]"
+21.png,"In the scene, how many torus's are there in total?",1,"[1, 3, 0.9]"
+16.png,"In the scene, how many cone's are there in total?",1,"[1, 3, 0.7]"
+52.png,"In the scene, how many cone's are there in total?",1,"[3, 1, 0.9]"
+25.png,"In the scene, how many cube's are there in total?",1,"[2, 1, 0.7]"
+18.png,"In the scene, how many sphere's are there in total?",2,"[1, 3, 0.8]"
+40.png,"In the scene, how many cone's are there in total?",3,"[2, 3, 0.7]"
+35.png,"In the scene, how many cube's are there in total?",1,"[2, 2, 0.8]"
+38.png,"In the scene, how many cone's are there in total?",1,"[2, 2, 0.99]"
+74.png,"In the scene, how many sphere's are there in total?",1,"[4, 1, 0.8]"
+34.png,"In the scene, how many torus's are there in total?",1,"[2, 2, 0.8]"
+80.png,"In the scene, how many sphere's are there in total?",1,"[4, 2, 0.7]"
+109.png,"In the scene, how many torus's are there in total?",2,"[5, 2, 0.9]"
+96.png,"In the scene, how many torus's are there in total?",1,"[5, 1, 0.7]"
+104.png,"In the scene, how many cone's are there in total?",2,"[5, 2, 0.7]"
+10.png,"In the scene, how many cylinder's are there in total?",2,"[1, 2, 0.8]"
+71.png,"In the scene, how many cube's are there in total?",3,"[3, 3, 0.99]"
+47.png,"In the scene, how many cube's are there in total?",2,"[2, 3, 0.99]"
+13.png,"In the scene, how many cube's are there in total?",2,"[1, 2, 0.9]"
+85.png,"In the scene, how many sphere's are there in total?",1,"[4, 2, 0.9]"
+37.png,"In the scene, how many cone's are there in total?",1,"[2, 2, 0.9]"
+5.png,"In the scene, how many sphere's are there in total?",1,"[1, 1, 0.9]"
+33.png,"In the scene, how many cylinder's are there in total?",1,"[2, 2, 0.7]"
+92.png,"In the scene, how many cylinder's are there in total?",3,"[4, 3, 0.9]"
+2.png,"In the scene, how many cube's are there in total?",1,"[1, 1, 0.8]"
+27.png,"In the scene, how many torus's are there in total?",1,"[2, 1, 0.8]"
+49.png,"In the scene, how many cone's are there in total?",1,"[3, 1, 0.7]"
+4.png,"In the scene, how many cube's are there in total?",1,"[1, 1, 0.9]"
+24.png,"In the scene, how many cube's are there in total?",1,"[2, 1, 0.7]"
+3.png,"In the scene, how many cone's are there in total?",1,"[1, 1, 0.8]"
+118.png,"In the scene, how many cube's are there in total?",2,"[5, 3, 0.99]"
+102.png,"In the scene, how many torus's are there in total?",1,"[5, 1, 0.99]"
+20.png,"In the scene, how many cylinder's are there in total?",2,"[1, 3, 0.9]"
+57.png,"In the scene, how many cone's are there in total?",2,"[3, 2, 0.7]"
+79.png,"In the scene, how many cylinder's are there in total?",1,"[4, 1, 0.99]"
+12.png,"In the scene, how many cone's are there in total?",1,"[1, 2, 0.9]"
+60.png,"In the scene, how many cylinder's are there in total?",1,"[3, 2, 0.9]"
+91.png,"In the scene, how many cone's are there in total?",1,"[4, 3, 0.8]"
+114.png,"In the scene, how many sphere's are there in total?",2,"[5, 3, 0.8]"
+14.png,"In the scene, how many sphere's are there in total?",1,"[1, 2, 0.99]"
diff --git a/3D_DoYouSeeMe/3D_visual_form_constancy/dataset_creator.py b/3D_DoYouSeeMe/3D_visual_form_constancy/dataset_creator.py
new file mode 100644
index 0000000000000000000000000000000000000000..b913c0f26e3869bdb5bc964560542b1ab4dc20a1
--- /dev/null
+++ b/3D_DoYouSeeMe/3D_visual_form_constancy/dataset_creator.py
@@ -0,0 +1,30 @@
+# Copyright (c) Microsoft Corporation.
+# Licensed under the MIT license.
+
+import os
+import json
+
+base_dir = "3D_DoYouSeeMe/form_constancy"
+
+files = os.listdir(base_dir)
+
+data_list = []
+for file in files:
+ if file.endswith(".json"):
+ with open(os.path.join(base_dir, file), "r") as f:
+ data = f.read()
+ data = json.loads(data)
+ question = data["question"]
+ answer = data["answer"]
+ num_shapes = data["num_shapes"]
+ noise_amount = data["noise_amount"]
+ data_list.append({
+ "filename": os.path.splitext(file)[0] + ".png",
+ "question": question,
+ "answer": answer,
+ "sweep": [num_shapes, noise_amount]
+ })
+import pandas as pd
+
+df = pd.DataFrame(data_list)
+df.to_csv(os.path.join(base_dir, "dataset_info.csv"), index=False)
\ No newline at end of file
diff --git a/3D_DoYouSeeMe/3D_visual_form_constancy/dataset_info.csv b/3D_DoYouSeeMe/3D_visual_form_constancy/dataset_info.csv
new file mode 100644
index 0000000000000000000000000000000000000000..a6855a46f73bd0de3e57962638f9a10eb206ae4d
--- /dev/null
+++ b/3D_DoYouSeeMe/3D_visual_form_constancy/dataset_info.csv
@@ -0,0 +1,81 @@
+filename,question,answer,sweep
+form_constancy_39.png,Do the shapes on the left and right have the same orientation?,No,"[2, 10]"
+form_constancy_9.png,Do the shapes on the left and right have the same orientation?,No,"[3, 5]"
+form_constancy_69.png,Do the shapes on the left and right have the same orientation?,No,"[2, 15]"
+form_constancy_67.png,Do the shapes on the left and right have the same orientation?,No,"[1, 15]"
+form_constancy_28.png,Do the shapes on the left and right have the same orientation?,No,"[4, 7.5]"
+form_constancy_45.png,Do the shapes on the left and right have the same orientation?,No,"[4, 10]"
+form_constancy_46.png,Do the shapes on the left and right have the same orientation?,No,"[4, 10]"
+form_constancy_0.png,Do the shapes on the left and right have the same orientation?,No,"[1, 5]"
+form_constancy_14.png,Do the shapes on the left and right have the same orientation?,No,"[4, 5]"
+form_constancy_56.png,Do the shapes on the left and right have the same orientation?,No,"[3, 12.5]"
+form_constancy_58.png,Do the shapes on the left and right have the same orientation?,No,"[3, 12.5]"
+form_constancy_57.png,Do the shapes on the left and right have the same orientation?,No,"[3, 12.5]"
+form_constancy_64.png,Do the shapes on the left and right have the same orientation?,No,"[1, 15]"
+form_constancy_71.png,Do the shapes on the left and right have the same orientation?,No,"[2, 15]"
+form_constancy_23.png,Do the shapes on the left and right have the same orientation?,No,"[2, 7.5]"
+form_constancy_42.png,Do the shapes on the left and right have the same orientation?,No,"[3, 10]"
+form_constancy_52.png,Do the shapes on the left and right have the same orientation?,No,"[2, 12.5]"
+form_constancy_76.png,Do the shapes on the left and right have the same orientation?,No,"[4, 15]"
+form_constancy_37.png,Do the shapes on the left and right have the same orientation?,No,"[2, 10]"
+form_constancy_59.png,Do the shapes on the left and right have the same orientation?,No,"[3, 12.5]"
+form_constancy_7.png,Do the shapes on the left and right have the same orientation?,No,"[2, 5]"
+form_constancy_30.png,Do the shapes on the left and right have the same orientation?,No,"[4, 7.5]"
+form_constancy_54.png,Do the shapes on the left and right have the same orientation?,No,"[2, 12.5]"
+form_constancy_41.png,Do the shapes on the left and right have the same orientation?,No,"[3, 10]"
+form_constancy_53.png,Do the shapes on the left and right have the same orientation?,No,"[2, 12.5]"
+form_constancy_74.png,Do the shapes on the left and right have the same orientation?,No,"[3, 15]"
+form_constancy_60.png,Do the shapes on the left and right have the same orientation?,No,"[4, 12.5]"
+form_constancy_25.png,Do the shapes on the left and right have the same orientation?,No,"[3, 7.5]"
+form_constancy_72.png,Do the shapes on the left and right have the same orientation?,No,"[3, 15]"
+form_constancy_5.png,Do the shapes on the left and right have the same orientation?,No,"[2, 5]"
+form_constancy_48.png,Do the shapes on the left and right have the same orientation?,No,"[1, 12.5]"
+form_constancy_24.png,Do the shapes on the left and right have the same orientation?,No,"[3, 7.5]"
+form_constancy_13.png,Do the shapes on the left and right have the same orientation?,No,"[4, 5]"
+form_constancy_75.png,Do the shapes on the left and right have the same orientation?,No,"[3, 15]"
+form_constancy_19.png,Do the shapes on the left and right have the same orientation?,No,"[1, 7.5]"
+form_constancy_62.png,Do the shapes on the left and right have the same orientation?,No,"[4, 12.5]"
+form_constancy_15.png,Do the shapes on the left and right have the same orientation?,No,"[4, 5]"
+form_constancy_21.png,Do the shapes on the left and right have the same orientation?,No,"[2, 7.5]"
+form_constancy_29.png,Do the shapes on the left and right have the same orientation?,No,"[4, 7.5]"
+form_constancy_38.png,Do the shapes on the left and right have the same orientation?,No,"[2, 10]"
+form_constancy_26.png,Do the shapes on the left and right have the same orientation?,No,"[3, 7.5]"
+form_constancy_35.png,Do the shapes on the left and right have the same orientation?,No,"[1, 10]"
+form_constancy_11.png,Do the shapes on the left and right have the same orientation?,No,"[3, 5]"
+form_constancy_12.png,Do the shapes on the left and right have the same orientation?,No,"[4, 5]"
+form_constancy_61.png,Do the shapes on the left and right have the same orientation?,No,"[4, 12.5]"
+form_constancy_51.png,Do the shapes on the left and right have the same orientation?,No,"[1, 12.5]"
+form_constancy_44.png,Do the shapes on the left and right have the same orientation?,No,"[4, 10]"
+form_constancy_2.png,Do the shapes on the left and right have the same orientation?,No,"[1, 5]"
+form_constancy_36.png,Do the shapes on the left and right have the same orientation?,No,"[2, 10]"
+form_constancy_77.png,Do the shapes on the left and right have the same orientation?,No,"[4, 15]"
+form_constancy_68.png,Do the shapes on the left and right have the same orientation?,No,"[2, 15]"
+form_constancy_1.png,Do the shapes on the left and right have the same orientation?,No,"[1, 5]"
+form_constancy_70.png,Do the shapes on the left and right have the same orientation?,No,"[2, 15]"
+form_constancy_47.png,Do the shapes on the left and right have the same orientation?,No,"[4, 10]"
+form_constancy_50.png,Do the shapes on the left and right have the same orientation?,No,"[1, 12.5]"
+form_constancy_78.png,Do the shapes on the left and right have the same orientation?,No,"[4, 15]"
+form_constancy_6.png,Do the shapes on the left and right have the same orientation?,No,"[2, 5]"
+form_constancy_3.png,Do the shapes on the left and right have the same orientation?,No,"[1, 5]"
+form_constancy_66.png,Do the shapes on the left and right have the same orientation?,No,"[1, 15]"
+form_constancy_16.png,Do the shapes on the left and right have the same orientation?,No,"[1, 7.5]"
+form_constancy_43.png,Do the shapes on the left and right have the same orientation?,No,"[3, 10]"
+form_constancy_10.png,Do the shapes on the left and right have the same orientation?,No,"[3, 5]"
+form_constancy_65.png,Do the shapes on the left and right have the same orientation?,No,"[1, 15]"
+form_constancy_40.png,Do the shapes on the left and right have the same orientation?,No,"[3, 10]"
+form_constancy_4.png,Do the shapes on the left and right have the same orientation?,No,"[2, 5]"
+form_constancy_79.png,Do the shapes on the left and right have the same orientation?,No,"[4, 15]"
+form_constancy_63.png,Do the shapes on the left and right have the same orientation?,No,"[4, 12.5]"
+form_constancy_55.png,Do the shapes on the left and right have the same orientation?,No,"[2, 12.5]"
+form_constancy_34.png,Do the shapes on the left and right have the same orientation?,No,"[1, 10]"
+form_constancy_49.png,Do the shapes on the left and right have the same orientation?,No,"[1, 12.5]"
+form_constancy_27.png,Do the shapes on the left and right have the same orientation?,No,"[3, 7.5]"
+form_constancy_18.png,Do the shapes on the left and right have the same orientation?,No,"[1, 7.5]"
+form_constancy_22.png,Do the shapes on the left and right have the same orientation?,No,"[2, 7.5]"
+form_constancy_17.png,Do the shapes on the left and right have the same orientation?,No,"[1, 7.5]"
+form_constancy_31.png,Do the shapes on the left and right have the same orientation?,No,"[4, 7.5]"
+form_constancy_32.png,Do the shapes on the left and right have the same orientation?,No,"[1, 10]"
+form_constancy_8.png,Do the shapes on the left and right have the same orientation?,No,"[3, 5]"
+form_constancy_73.png,Do the shapes on the left and right have the same orientation?,No,"[3, 15]"
+form_constancy_20.png,Do the shapes on the left and right have the same orientation?,No,"[2, 7.5]"
+form_constancy_33.png,Do the shapes on the left and right have the same orientation?,No,"[1, 10]"
diff --git a/3D_DoYouSeeMe/3D_visual_form_constancy/form_constancy_0.json b/3D_DoYouSeeMe/3D_visual_form_constancy/form_constancy_0.json
new file mode 100644
index 0000000000000000000000000000000000000000..3c32d169d0a3acad8781c55291da74bdc107ed6c
--- /dev/null
+++ b/3D_DoYouSeeMe/3D_visual_form_constancy/form_constancy_0.json
@@ -0,0 +1,13 @@
+{
+ "scene": "grassland",
+ "light": "left",
+ "same_orientation": false,
+ "shapes": [
+ "cylinder"
+ ],
+ "substitutions": [],
+ "question": "Do the shapes on the left and right have the same orientation?",
+ "answer": "No",
+ "num_shapes": 1,
+ "noise_amount": 5
+}
\ No newline at end of file
diff --git a/3D_DoYouSeeMe/3D_visual_form_constancy/form_constancy_0.png b/3D_DoYouSeeMe/3D_visual_form_constancy/form_constancy_0.png
new file mode 100644
index 0000000000000000000000000000000000000000..c1fc2ac2350156a5e376119cc5efa9715a9a8741
--- /dev/null
+++ b/3D_DoYouSeeMe/3D_visual_form_constancy/form_constancy_0.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:68bcaceffde791a872a8843849a15887bcbdfb2aedc54d2dc769fb13ef009e82
+size 894269
diff --git a/3D_DoYouSeeMe/3D_visual_spatial/dataset_creator.py b/3D_DoYouSeeMe/3D_visual_spatial/dataset_creator.py
new file mode 100644
index 0000000000000000000000000000000000000000..96d2f753378319c8d12ec1005ebcb3336bc5ad93
--- /dev/null
+++ b/3D_DoYouSeeMe/3D_visual_spatial/dataset_creator.py
@@ -0,0 +1,117 @@
+# Copyright (c) Microsoft Corporation.
+# Licensed under the MIT license.
+
+import random
+import re
+from collections import defaultdict
+SEED = 42
+random.seed(SEED)
+
+def generate_question_and_answer(grid_dict):
+ """
+ Generate a question + answer based on a grid dictionary.
+
+ Returns:
+ question (str): e.g.
+ "In grid 1, starting from the torus at position (row 0, column 1),
+ how many spheres are there to the right of it in the same row?"
+ answer (int): the count of target shapes in that direction.
+ """
+ # 1. Parse all entries
+ positions = [] # list of (grid_id, row, col, shape)
+ for key, shape in grid_dict.items():
+ m = re.match(r"grid_(\d+)_(\d+)_(\d+)", key)
+ if not m:
+ continue
+ gid, r, c = map(int, m.groups())
+ positions.append((gid, r, c, shape))
+
+ # 2. Group by grid and compute bounds
+ by_grid = defaultdict(list)
+ for gid, r, c, shape in positions:
+ by_grid[gid].append((r, c, shape))
+ gid, cells = next(iter(by_grid.items()))
+ rows = [r for r, c, _ in cells]
+ cols = [c for r, c, _ in cells]
+ max_row, max_col = max(rows), max(cols)
+
+ # 3. Filter to interior cells if possible
+ interior = [(r, c, s) for (r, c, s) in cells
+ if 0 < r < max_row and 0 < c < max_col]
+ if interior:
+ ref_r, ref_c, ref_shape = random.choice(interior)
+ else:
+ # fallback for very thin grids
+ ref_r, ref_c, ref_shape = random.choice(cells)
+
+ # 4. Build possible directions (with predicates)
+ directions = []
+ if ref_c < max_col:
+ directions.append((
+ "to the right of it in the same row",
+ lambda r, c: r == ref_r and c > ref_c
+ ))
+ if ref_c > 0:
+ directions.append((
+ "to the left of it in the same row",
+ lambda r, c: r == ref_r and c < ref_c
+ ))
+ if ref_r < max_row:
+ directions.append((
+ "ahead it in the same column",
+ lambda r, c: c == ref_c and r > ref_r
+ ))
+ if ref_r > 0:
+ directions.append((
+ "behind it in the same column",
+ lambda r, c: c == ref_c and r < ref_r
+ ))
+ # Should always have at least one direction now
+ direction_text, predicate = random.choice(directions)
+
+ # 5. Pick a target shape (different from reference)
+ other_shapes = list({s for _, _, s in cells if s != ref_shape})
+ target_shape = random.choice(other_shapes)
+
+ # 6. Compute the answer
+ count = sum(
+ 1
+ for (r, c, s) in cells
+ if predicate(r, c) and s == target_shape
+ )
+
+ # 7. Formulate the question
+ question = (
+ f"In grid {gid}, starting from the {ref_shape} at position "
+ f"(row {ref_r}, column {ref_c}), how many {target_shape}s are there "
+ f"{direction_text}?"
+ )
+
+ return question, count, (max_row, max_col)
+
+import os
+import json
+
+base_dir = "3D_DoYouSeeMe/visual_spatial"
+
+os.listdir(base_dir)
+
+data_list = []
+for filename in os.listdir(base_dir):
+ if filename.endswith(".json"):
+ # print(filename)
+ with open(os.path.join(base_dir, filename), "r") as f:
+ data = f.read()
+ data = json.loads(data)
+ q, a, (max_row, max_col) = generate_question_and_answer(data)
+ data_list.append({"filename": os.path.splitext(filename)[0] + ".png",
+ "question": q,
+ "answer": a,
+ "sweep": [max_row, max_col]})
+
+import pandas as pd
+df = pd.DataFrame(data_list)
+df.to_csv(os.path.join(base_dir, "dataset_info.csv"), index=False)
+
+
+
diff --git a/3D_DoYouSeeMe/3D_visual_spatial/dataset_info.csv b/3D_DoYouSeeMe/3D_visual_spatial/dataset_info.csv
new file mode 100644
index 0000000000000000000000000000000000000000..450e919d73de1648ddbaf97163626e8364891735
--- /dev/null
+++ b/3D_DoYouSeeMe/3D_visual_spatial/dataset_info.csv
@@ -0,0 +1,81 @@
+filename,question,answer,sweep
+grid_51.png,"In grid 51, starting from the cone at position (row 1, column 1), how many spheres are there to the right of it in the same row?",0,"[3, 3]"
+grid_33.png,"In grid 33, starting from the cylinder at position (row 1, column 1), how many cubes are there to the left of it in the same row?",0,"[2, 3]"
+grid_72.png,"In grid 72, starting from the cube at position (row 3, column 2), how many toruss are there to the right of it in the same row?",0,"[4, 3]"
+grid_23.png,"In grid 23, starting from the torus at position (row 2, column 0), how many spheres are there behind it in the same column?",1,"[2, 1]"
+grid_35.png,"In grid 35, starting from the torus at position (row 1, column 1), how many cylinders are there to the right of it in the same row?",2,"[2, 4]"
+grid_12.png,"In grid 12, starting from the cone at position (row 0, column 3), how many cylinders are there to the left of it in the same row?",0,"[1, 3]"
+grid_41.png,"In grid 41, starting from the cube at position (row 1, column 1), how many cones are there behind it in the same column?",1,"[3, 1]"
+grid_69.png,"In grid 69, starting from the torus at position (row 1, column 1), how many cubes are there behind it in the same column?",0,"[4, 2]"
+grid_67.png,"In grid 67, starting from the cylinder at position (row 2, column 1), how many toruss are there to the right of it in the same row?",0,"[4, 2]"
+grid_37.png,"In grid 37, starting from the cone at position (row 1, column 3), how many cubes are there behind it in the same column?",0,"[2, 4]"
+grid_77.png,"In grid 77, starting from the sphere at position (row 2, column 2), how many cylinders are there to the left of it in the same row?",0,"[4, 4]"
+grid_29.png,"In grid 29, starting from the cone at position (row 1, column 1), how many cubes are there to the right of it in the same row?",0,"[2, 2]"
+grid_26.png,"In grid 26, starting from the cone at position (row 1, column 1), how many toruss are there to the right of it in the same row?",0,"[2, 2]"
+grid_58.png,"In grid 58, starting from the torus at position (row 1, column 3), how many cubes are there ahead it in the same column?",1,"[3, 4]"
+grid_70.png,"In grid 70, starting from the cube at position (row 3, column 2), how many toruss are there behind it in the same column?",1,"[4, 3]"
+grid_0.png,"In grid 0, starting from the torus at position (row 1, column 1), how many spheres are there to the left of it in the same row?",0,"[1, 1]"
+grid_45.png,"In grid 45, starting from the cube at position (row 2, column 1), how many cones are there to the left of it in the same row?",0,"[3, 2]"
+grid_46.png,"In grid 46, starting from the cylinder at position (row 1, column 1), how many cubes are there to the right of it in the same row?",0,"[3, 2]"
+grid_76.png,"In grid 76, starting from the cone at position (row 2, column 2), how many cylinders are there to the right of it in the same row?",0,"[4, 4]"
+grid_16.png,"In grid 16, starting from the cube at position (row 0, column 1), how many cylinders are there to the left of it in the same row?",0,"[1, 4]"
+grid_11.png,"In grid 11, starting from the cube at position (row 1, column 3), how many cylinders are there behind it in the same column?",0,"[1, 3]"
+grid_60.png,"In grid 60, starting from the cylinder at position (row 2, column 1), how many toruss are there ahead it in the same column?",0,"[4, 1]"
+grid_14.png,"In grid 14, starting from the torus at position (row 1, column 0), how many cones are there to the right of it in the same row?",1,"[1, 3]"
+grid_5.png,"In grid 5, starting from the torus at position (row 1, column 2), how many cylinders are there to the left of it in the same row?",1,"[1, 2]"
+grid_47.png,"In grid 47, starting from the cube at position (row 1, column 1), how many cones are there behind it in the same column?",0,"[3, 2]"
+grid_43.png,"In grid 43, starting from the torus at position (row 2, column 0), how many spheres are there behind it in the same column?",1,"[3, 1]"
+grid_49.png,"In grid 49, starting from the cube at position (row 2, column 1), how many spheres are there to the right of it in the same row?",0,"[3, 2]"
+grid_1.png,"In grid 1, starting from the torus at position (row 0, column 0), how many cones are there ahead it in the same column?",0,"[1, 1]"
+grid_2.png,"In grid 2, starting from the sphere at position (row 1, column 0), how many toruss are there to the right of it in the same row?",0,"[1, 1]"
+grid_8.png,"In grid 8, starting from the cone at position (row 1, column 1), how many cylinders are there behind it in the same column?",0,"[1, 2]"
+grid_78.png,"In grid 78, starting from the cylinder at position (row 2, column 1), how many cones are there behind it in the same column?",1,"[4, 4]"
+grid_22.png,"In grid 22, starting from the sphere at position (row 2, column 1), how many toruss are there behind it in the same column?",1,"[2, 1]"
+grid_19.png,"In grid 19, starting from the cube at position (row 0, column 4), how many cylinders are there to the left of it in the same row?",1,"[1, 4]"
+grid_56.png,"In grid 56, starting from the cone at position (row 2, column 3), how many cylinders are there ahead it in the same column?",1,"[3, 4]"
+grid_13.png,"In grid 13, starting from the sphere at position (row 1, column 2), how many toruss are there to the left of it in the same row?",0,"[1, 3]"
+grid_31.png,"In grid 31, starting from the torus at position (row 1, column 1), how many spheres are there behind it in the same column?",0,"[2, 3]"
+grid_59.png,"In grid 59, starting from the torus at position (row 1, column 1), how many cubes are there to the right of it in the same row?",0,"[3, 4]"
+grid_27.png,"In grid 27, starting from the cone at position (row 1, column 1), how many spheres are there behind it in the same column?",0,"[2, 2]"
+grid_39.png,"In grid 39, starting from the cone at position (row 1, column 1), how many cubes are there behind it in the same column?",0,"[2, 4]"
+grid_50.png,"In grid 50, starting from the cube at position (row 2, column 2), how many toruss are there ahead it in the same column?",0,"[3, 3]"
+grid_40.png,"In grid 40, starting from the cube at position (row 0, column 1), how many cones are there ahead it in the same column?",1,"[3, 1]"
+grid_63.png,"In grid 63, starting from the cone at position (row 2, column 1), how many cubes are there to the left of it in the same row?",0,"[4, 1]"
+grid_71.png,"In grid 71, starting from the sphere at position (row 2, column 2), how many cones are there to the left of it in the same row?",1,"[4, 3]"
+grid_57.png,"In grid 57, starting from the cylinder at position (row 1, column 1), how many cubes are there ahead it in the same column?",1,"[3, 4]"
+grid_52.png,"In grid 52, starting from the sphere at position (row 1, column 1), how many toruss are there ahead it in the same column?",0,"[3, 3]"
+grid_17.png,"In grid 17, starting from the torus at position (row 0, column 2), how many cylinders are there to the left of it in the same row?",0,"[1, 4]"
+grid_66.png,"In grid 66, starting from the cylinder at position (row 3, column 1), how many toruss are there to the right of it in the same row?",0,"[4, 2]"
+grid_79.png,"In grid 79, starting from the cone at position (row 3, column 2), how many cubes are there to the right of it in the same row?",0,"[4, 4]"
+grid_48.png,"In grid 48, starting from the cube at position (row 2, column 1), how many cylinders are there ahead it in the same column?",0,"[3, 2]"
+grid_18.png,"In grid 18, starting from the sphere at position (row 0, column 0), how many cones are there to the right of it in the same row?",2,"[1, 4]"
+grid_32.png,"In grid 32, starting from the sphere at position (row 1, column 1), how many cubes are there to the right of it in the same row?",0,"[2, 3]"
+grid_42.png,"In grid 42, starting from the sphere at position (row 3, column 1), how many cubes are there to the left of it in the same row?",1,"[3, 1]"
+grid_30.png,"In grid 30, starting from the cube at position (row 1, column 1), how many cylinders are there behind it in the same column?",1,"[2, 3]"
+grid_28.png,"In grid 28, starting from the cone at position (row 1, column 1), how many cubes are there behind it in the same column?",1,"[2, 2]"
+grid_24.png,"In grid 24, starting from the cylinder at position (row 2, column 0), how many cones are there to the right of it in the same row?",1,"[2, 1]"
+grid_64.png,"In grid 64, starting from the sphere at position (row 2, column 0), how many toruss are there ahead it in the same column?",2,"[4, 1]"
+grid_36.png,"In grid 36, starting from the torus at position (row 1, column 2), how many cubes are there behind it in the same column?",1,"[2, 4]"
+grid_62.png,"In grid 62, starting from the torus at position (row 1, column 1), how many spheres are there to the left of it in the same row?",0,"[4, 1]"
+grid_15.png,"In grid 15, starting from the torus at position (row 1, column 0), how many cylinders are there to the right of it in the same row?",0,"[1, 4]"
+grid_7.png,"In grid 7, starting from the cylinder at position (row 1, column 1), how many toruss are there to the right of it in the same row?",0,"[1, 2]"
+grid_74.png,"In grid 74, starting from the torus at position (row 1, column 1), how many cylinders are there to the right of it in the same row?",1,"[4, 3]"
+grid_10.png,"In grid 10, starting from the sphere at position (row 0, column 1), how many cubes are there to the right of it in the same row?",1,"[1, 3]"
+grid_6.png,"In grid 6, starting from the torus at position (row 0, column 0), how many cylinders are there to the right of it in the same row?",1,"[1, 2]"
+grid_20.png,"In grid 20, starting from the cone at position (row 2, column 1), how many spheres are there behind it in the same column?",0,"[2, 1]"
+grid_61.png,"In grid 61, starting from the torus at position (row 4, column 0), how many cones are there to the right of it in the same row?",1,"[4, 1]"
+grid_25.png,"In grid 25, starting from the cube at position (row 1, column 1), how many cones are there behind it in the same column?",0,"[2, 2]"
+grid_53.png,"In grid 53, starting from the cylinder at position (row 1, column 2), how many toruss are there to the right of it in the same row?",0,"[3, 3]"
+grid_44.png,"In grid 44, starting from the sphere at position (row 3, column 0), how many cylinders are there behind it in the same column?",2,"[3, 1]"
+grid_54.png,"In grid 54, starting from the cylinder at position (row 2, column 2), how many cubes are there behind it in the same column?",0,"[3, 3]"
+grid_3.png,"In grid 3, starting from the sphere at position (row 0, column 0), how many cubes are there to the right of it in the same row?",1,"[1, 1]"
+grid_34.png,"In grid 34, starting from the cube at position (row 1, column 2), how many spheres are there to the right of it in the same row?",1,"[2, 3]"
+grid_75.png,"In grid 75, starting from the torus at position (row 2, column 1), how many cones are there to the left of it in the same row?",1,"[4, 4]"
+grid_65.png,"In grid 65, starting from the cube at position (row 1, column 1), how many cylinders are there behind it in the same column?",0,"[4, 2]"
+grid_38.png,"In grid 38, starting from the sphere at position (row 1, column 2), how many cylinders are there behind it in the same column?",1,"[2, 4]"
+grid_68.png,"In grid 68, starting from the cylinder at position (row 1, column 1), how many cubes are there behind it in the same column?",0,"[4, 2]"
+grid_55.png,"In grid 55, starting from the torus at position (row 1, column 1), how many cubes are there to the right of it in the same row?",2,"[3, 4]"
+grid_21.png,"In grid 21, starting from the torus at position (row 0, column 1), how many cylinders are there to the left of it in the same row?",1,"[2, 1]"
+grid_73.png,"In grid 73, starting from the cylinder at position (row 2, column 2), how many cubes are there behind it in the same column?",2,"[4, 3]"
+grid_9.png,"In grid 9, starting from the cone at position (row 1, column 0), how many cylinders are there to the right of it in the same row?",0,"[1, 2]"
+grid_4.png,"In grid 4, starting from the sphere at position (row 1, column 1), how many cylinders are there to the left of it in the same row?",1,"[1, 1]"
diff --git a/3D_DoYouSeeMe/3D_visual_spatial/grid_0.json b/3D_DoYouSeeMe/3D_visual_spatial/grid_0.json
new file mode 100644
index 0000000000000000000000000000000000000000..f685f657f47ec303d6b8568835483a42a6c09b03
--- /dev/null
+++ b/3D_DoYouSeeMe/3D_visual_spatial/grid_0.json
@@ -0,0 +1,6 @@
+{
+ "grid_0_0_0": "cube",
+ "grid_0_0_1": "sphere",
+ "grid_0_1_0": "torus",
+ "grid_0_1_1": "torus"
+}
\ No newline at end of file
diff --git a/3D_DoYouSeeMe/3D_visual_spatial/grid_0.png b/3D_DoYouSeeMe/3D_visual_spatial/grid_0.png
new file mode 100644
index 0000000000000000000000000000000000000000..693f4ef52a9a681dab0b42961c3658094628e78b
--- /dev/null
+++ b/3D_DoYouSeeMe/3D_visual_spatial/grid_0.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:5447ed53b2e54ffc6eeaefc989070286cbf16019a9338bfb7d71dec8ad23539c
+size 2485640
diff --git a/CDLA-Permissive-2.0.md b/CDLA-Permissive-2.0.md
new file mode 100644
index 0000000000000000000000000000000000000000..3dbf39ed10f6c7f73109739381405f7dec4b91b1
--- /dev/null
+++ b/CDLA-Permissive-2.0.md
@@ -0,0 +1,35 @@
+# Community Data License Agreement - Permissive - Version 2.0
+
+This is the Community Data License Agreement - Permissive, Version 2.0 (the "agreement"). Data Provider(s) and Data Recipient(s) agree as follows:
+
+## 1. Provision of the Data
+
+1.1. A Data Recipient may use, modify, and share the Data made available by Data Provider(s) under this agreement if that Data Recipient follows the terms of this agreement.
+
+1.2. This agreement does not impose any restriction on a Data Recipient's use, modification, or sharing of any portions of the Data that are in the public domain or that may be used, modified, or shared under any other legal exception or limitation.
+
+## 2. Conditions for Sharing Data
+
+2.1. A Data Recipient may share Data, with or without modifications, so long as the Data Recipient makes available the text of this agreement with the shared Data.
+
+## 3. No Restrictions on Results
+
+3.1. This agreement does not impose any restriction or obligations with respect to the use, modification, or sharing of Results.
+
+## 4. No Warranty; Limitation of Liability
+
+4.1. All Data Recipients receive the Data subject to the following terms:
+
+THE DATA IS PROVIDED ON AN "AS IS" BASIS, WITHOUT REPRESENTATIONS, WARRANTIES OR CONDITIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED INCLUDING, WITHOUT LIMITATION, ANY WARRANTIES OR CONDITIONS OF TITLE, NON-INFRINGEMENT, MERCHANTABILITY OR FITNESS FOR A PARTICULAR PURPOSE.
+
+NO DATA PROVIDER SHALL HAVE ANY LIABILITY FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING WITHOUT LIMITATION LOST PROFITS), HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE DATA OR RESULTS, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
+
+## 5. Definitions
+
+5.1. "Data" means the material received by a Data Recipient under this agreement.
+
+5.2. "Data Provider" means any person who is the source of Data provided under this agreement and in reliance on a Data Recipient's agreement to its terms.
+
+5.3. "Data Recipient" means any person who receives Data directly or indirectly from a Data Provider and agrees to the terms of this agreement.
+
+5.4. "Results" means any outcome obtained by computational analysis of Data, including for example machine learning models and models' insights.
diff --git a/CODE_OF_CONDUCT.md b/CODE_OF_CONDUCT.md
new file mode 100644
index 0000000000000000000000000000000000000000..c72a5749c52ac97bca71c672ef5295d303d22b05
--- /dev/null
+++ b/CODE_OF_CONDUCT.md
@@ -0,0 +1,9 @@
+# Microsoft Open Source Code of Conduct
+
+This project has adopted the [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/).
+
+Resources:
+
+- [Microsoft Open Source Code of Conduct](https://opensource.microsoft.com/codeofconduct/)
+- [Microsoft Code of Conduct FAQ](https://opensource.microsoft.com/codeofconduct/faq/)
+- Contact [opencode@microsoft.com](mailto:opencode@microsoft.com) with questions or concerns
diff --git a/LICENSE b/LICENSE
new file mode 100644
index 0000000000000000000000000000000000000000..3d8b93bc7987d14c848448c089e2ae15311380d7
--- /dev/null
+++ b/LICENSE
@@ -0,0 +1,21 @@
+ MIT License
+
+ Copyright (c) Microsoft Corporation.
+
+ Permission is hereby granted, free of charge, to any person obtaining a copy
+ of this software and associated documentation files (the "Software"), to deal
+ in the Software without restriction, including without limitation the rights
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
+ copies of the Software, and to permit persons to whom the Software is
+ furnished to do so, subject to the following conditions:
+
+ The above copyright notice and this permission notice shall be included in all
+ copies or substantial portions of the Software.
+
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
+ SOFTWARE
diff --git a/README.md b/README.md
index 4500b67cd517890dfbe8a9910d60aba101040db5..f1f5a15d00d72e2a99708eeb84aba87ea06cb5bb 100644
--- a/README.md
+++ b/README.md
@@ -48,65 +48,12 @@
- The code and dataset are open-sourced to facilitate further research and advancement in the field of visual perception for artificial intelligence systems.
-
+ The code is open-sourced to facilitate further research and advancement in the field of visual perception for artificial intelligence systems.
+ Paper: [DoYouSeeMe Benchmark on arXiv](https://arxiv.org/pdf/2506.02022)
+ Code: [DoYouSeeMe Repo Github](https://github.com/microsoft/Do-You-See-Me)
This repository contains a synthetic dataset exploring seven distinct dimensions of visual perception and processing. Each dimension examines a specific aspect of how we interpret visual information.
- ## Dataset Structure
-
- The repository is organized into two directories:
- - 2D_DoYouSeeMe
-
- - 3D_DoYouSeeMe
-
- Each directory consists of separate dimension wise dataset:
-
- **2D**
- - 2D_DoYouSeeMe/visual_spatial
- - 2D_DoYouSeeMe/visual_figure_ground
- - 2D_DoYouSeeMe/visual_form_constancy
- - 2D_DoYouSeeMe/shape_disambiguation
- - 2D_DoYouSeeMe/shape_color_discrimination
- - 2D_DoYouSeeMe/letter_disambiguation
- - 2D_DoYouSeeMe/visual_closure
-
- **3D**
- - 3D_DoYouSeeMe/visual_spatial
- - 3D_DoYouSeeMe/visual_form_constancy
- - 3D_DoYouSeeMe/shape_disambiguation
- - 3D_DoYouSeeMe/shape_color_discrimination
- - 3D_DoYouSeeMe/letter_disambiguation
-
- To generate data, run the Python file corresponding to the visual-perception dimension you are interested in. The general command structure is:
-
- ```bash
- python scripts//.py
- ```
- * Replace `` with either `2D` or `3D`.
- * Replace `` with the actual name of the visual-perception dimension (e.g., `visual_spatial`, `shape_disambiguation`).
-
- **Example:** To generate data for the 2D `visual_spatial` dimension, you would execute:
-
- ```bash
- python scripts/2D/visual_spatial.py
- ```
-Each python file has a control towards the end, where sweeps are defined for each control parameter listed in **Table 1**, these can be changed to increase data. For 1) visual_spatial, 2) shape_disambiguation, and 3) shape_color_discrimination a *dataset_dump.csv* is created in related directory, this dump file captures all the details for each generated image, we then use a *dataset_creator.py* file (added in all the three dirs) to generate the actual dataset (dataset_info.csv), where multiple perception questions are formulated per image (refer the dataset_creator.py to change number of questions per image). Each visual-perception dim has a dataset_info.csv containing filename, question, answer, and sweep column.
-
- We have created a dataset of around 2.6k images used and benchmarked multiple open and closed source MLLMs, performance of MLLMs is presented in the **Results** section. This benchmark dataset is released as a zip file named *dataset.zip* in the main folder.
-
- ## Data Format
-
- Each dimension directory contains:
- - Images(`.png`): Images with controlled variations
- - dataset_info.csv: Metadata file containing control parameters and ground truth answers for each image
-
- ## Results
-
-
-

-
-
## Samples
diff --git a/SECURITY.md b/SECURITY.md
new file mode 100644
index 0000000000000000000000000000000000000000..6b906d43bc2057e6a832c3236897b2e514d6e1e7
--- /dev/null
+++ b/SECURITY.md
@@ -0,0 +1,41 @@
+
+
+## Security
+
+Microsoft takes the security of our software products and services seriously, which includes all source code repositories managed through our GitHub organizations, which include [Microsoft](https://github.com/Microsoft), [Azure](https://github.com/Azure), [DotNet](https://github.com/dotnet), [AspNet](https://github.com/aspnet) and [Xamarin](https://github.com/xamarin).
+
+If you believe you have found a security vulnerability in any Microsoft-owned repository that meets [Microsoft's definition of a security vulnerability](https://aka.ms/security.md/definition), please report it to us as described below.
+
+## Reporting Security Issues
+
+**Please do not report security vulnerabilities through public GitHub issues.**
+
+Instead, please report them to the Microsoft Security Response Center (MSRC) at [https://msrc.microsoft.com/create-report](https://aka.ms/security.md/msrc/create-report).
+
+If you prefer to submit without logging in, send email to [secure@microsoft.com](mailto:secure@microsoft.com). If possible, encrypt your message with our PGP key; please download it from the [Microsoft Security Response Center PGP Key page](https://aka.ms/security.md/msrc/pgp).
+
+You should receive a response within 24 hours. If for some reason you do not, please follow up via email to ensure we received your original message. Additional information can be found at [microsoft.com/msrc](https://www.microsoft.com/msrc).
+
+Please include the requested information listed below (as much as you can provide) to help us better understand the nature and scope of the possible issue:
+
+ * Type of issue (e.g. buffer overflow, SQL injection, cross-site scripting, etc.)
+ * Full paths of source file(s) related to the manifestation of the issue
+ * The location of the affected source code (tag/branch/commit or direct URL)
+ * Any special configuration required to reproduce the issue
+ * Step-by-step instructions to reproduce the issue
+ * Proof-of-concept or exploit code (if possible)
+ * Impact of the issue, including how an attacker might exploit the issue
+
+This information will help us triage your report more quickly.
+
+If you are reporting for a bug bounty, more complete reports can contribute to a higher bounty award. Please visit our [Microsoft Bug Bounty Program](https://aka.ms/security.md/msrc/bounty) page for more details about our active programs.
+
+## Preferred Languages
+
+We prefer all communications to be in English.
+
+## Policy
+
+Microsoft follows the principle of [Coordinated Vulnerability Disclosure](https://aka.ms/security.md/cvd).
+
+
diff --git a/SUPPORT.md b/SUPPORT.md
new file mode 100644
index 0000000000000000000000000000000000000000..291d4d43733f4c15a81ff598ec1c99fd6c18f64c
--- /dev/null
+++ b/SUPPORT.md
@@ -0,0 +1,25 @@
+# TODO: The maintainer of this repo has not yet edited this file
+
+**REPO OWNER**: Do you want Customer Service & Support (CSS) support for this product/project?
+
+- **No CSS support:** Fill out this template with information about how to file issues and get help.
+- **Yes CSS support:** Fill out an intake form at [aka.ms/onboardsupport](https://aka.ms/onboardsupport). CSS will work with/help you to determine next steps.
+- **Not sure?** Fill out an intake as though the answer were "Yes". CSS will help you decide.
+
+*Then remove this first heading from this SUPPORT.MD file before publishing your repo.*
+
+# Support
+
+## How to file issues and get help
+
+This project uses GitHub Issues to track bugs and feature requests. Please search the existing
+issues before filing new issues to avoid duplicates. For new issues, file your bug or
+feature request as a new Issue.
+
+For help and questions about using this project, please **REPO MAINTAINER: INSERT INSTRUCTIONS HERE
+FOR HOW TO ENGAGE REPO OWNERS OR COMMUNITY FOR HELP. COULD BE A STACK OVERFLOW TAG OR OTHER
+CHANNEL. WHERE WILL YOU HELP PEOPLE?**.
+
+## Microsoft Support Policy
+
+Support for this **PROJECT or PRODUCT** is limited to the resources listed above.
diff --git a/assets/correct_MLLM_claude_human_eval_v2.png b/assets/correct_MLLM_claude_human_eval_v2.png
new file mode 100644
index 0000000000000000000000000000000000000000..889afb0a97779467fce006970aa62b1de1e23583
--- /dev/null
+++ b/assets/correct_MLLM_claude_human_eval_v2.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:155373ba0ab27d08346f6b3db7e646a9500038323151bd000b1767e6a38fae3b
+size 59481
diff --git a/assets/incorrect_MLLM_claude_human_eval_v2.png b/assets/incorrect_MLLM_claude_human_eval_v2.png
new file mode 100644
index 0000000000000000000000000000000000000000..b22c0ef9b06b232dc1583f458f9978dd9e193180
--- /dev/null
+++ b/assets/incorrect_MLLM_claude_human_eval_v2.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:e5bd974e1bab4f9c740d91d400af4dbd5a048f76a1d79f0c88269bb257e12701
+size 54889
diff --git a/assets/main_fig_v2.png b/assets/main_fig_v2.png
new file mode 100644
index 0000000000000000000000000000000000000000..2bbd1bca24fe89900c3a2b81b79d97235f1c7078
--- /dev/null
+++ b/assets/main_fig_v2.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:ae5303f2734c3254cee6950240aa1699c1559e63aa8600ce8d9fec1233081f43
+size 4554334
diff --git a/assets/model_performance_sweep_vs_human_subjective_pref_form_constancy.png b/assets/model_performance_sweep_vs_human_subjective_pref_form_constancy.png
new file mode 100644
index 0000000000000000000000000000000000000000..84cd1f84f7e98acbf65f32f297c908226b8e109d
--- /dev/null
+++ b/assets/model_performance_sweep_vs_human_subjective_pref_form_constancy.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:3c91cb8db38eaa1b3e8031b1087a64b613b306cb364851eb13de9a704ad7022d
+size 81533
diff --git a/assets/model_performance_sweep_vs_human_subjective_pref_letter.png b/assets/model_performance_sweep_vs_human_subjective_pref_letter.png
new file mode 100644
index 0000000000000000000000000000000000000000..c62aff44d8c6e2c15515f7d4c3c8fe5fef100eb1
--- /dev/null
+++ b/assets/model_performance_sweep_vs_human_subjective_pref_letter.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:35f121eaa59099204d4954b3a92d6d6cd391d185385b9b35a0a3374e72242100
+size 81352
diff --git a/assets/spider_chart_wyn_dataset.png b/assets/spider_chart_wyn_dataset.png
new file mode 100644
index 0000000000000000000000000000000000000000..c9cc6a223f5d511144e08ff37030c3c746731eb3
--- /dev/null
+++ b/assets/spider_chart_wyn_dataset.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:be1c4f595abf2a35b2955add714f1305c90e2037c293da77cbfc47d4e95b24e1
+size 1223881
diff --git a/assets/stacked_chart_reasoning_perception_mix_plot_v2.png b/assets/stacked_chart_reasoning_perception_mix_plot_v2.png
new file mode 100644
index 0000000000000000000000000000000000000000..00c2e8363a8e44b8e6d93075bd24015c495b9ec2
--- /dev/null
+++ b/assets/stacked_chart_reasoning_perception_mix_plot_v2.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:148cb552ee3644e2824cf3f4b0df66c12b608c7105972b13fb442c4ac6eba68d
+size 142074
diff --git a/assets/synthetic_dataset.png b/assets/synthetic_dataset.png
new file mode 100644
index 0000000000000000000000000000000000000000..47db8ab0d33459b25a223601ae744f9c6893776c
--- /dev/null
+++ b/assets/synthetic_dataset.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a54cca7dc6e626571d8161b3a432fd6a24cb3eb38bfa06b6270e653bb4cc4e96
+size 1797320
diff --git a/img/control_param_syn_dataset.png b/img/control_param_syn_dataset.png
new file mode 100644
index 0000000000000000000000000000000000000000..1dd300d5c9b4737e3076f1f9ff1637c83fad5dcd
--- /dev/null
+++ b/img/control_param_syn_dataset.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:83095264991b3de4ecfbdd8de3c93d56522ddc835b145b711f0c13d2ea141d6a
+size 285447
diff --git a/img/main_fig.png b/img/main_fig.png
new file mode 100644
index 0000000000000000000000000000000000000000..c80ab488b575776aeb951305e25607a896a11c2e
--- /dev/null
+++ b/img/main_fig.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:be86724aa3b6522c8fad9ad05529e62e90b0ed9a1edb6985a3dd9de477736c78
+size 2354540
diff --git a/img/results_logic_dataset.png b/img/results_logic_dataset.png
new file mode 100644
index 0000000000000000000000000000000000000000..98be3946cf029329f100b8fcfcee5336dad5ab6c
--- /dev/null
+++ b/img/results_logic_dataset.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:d85a7d71825fcacc49588c71db9158a21329905840e9eaa4d681a9d1479cb879
+size 146496
diff --git a/img/results_syn_dataset.png b/img/results_syn_dataset.png
new file mode 100644
index 0000000000000000000000000000000000000000..280e5b16507159bbf2389408bc9c7e55b496bc41
--- /dev/null
+++ b/img/results_syn_dataset.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:200816747a942e2b5ebab57fcc0c350673fe1424449351b6d63e6b2b2206d88b
+size 197785
diff --git a/img/spider_chart_wyn_dataset.png b/img/spider_chart_wyn_dataset.png
new file mode 100644
index 0000000000000000000000000000000000000000..c9cc6a223f5d511144e08ff37030c3c746731eb3
--- /dev/null
+++ b/img/spider_chart_wyn_dataset.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:be1c4f595abf2a35b2955add714f1305c90e2037c293da77cbfc47d4e95b24e1
+size 1223881
diff --git a/img/synthetic_dataset.png b/img/synthetic_dataset.png
new file mode 100644
index 0000000000000000000000000000000000000000..47db8ab0d33459b25a223601ae744f9c6893776c
--- /dev/null
+++ b/img/synthetic_dataset.png
@@ -0,0 +1,3 @@
+version https://git-lfs.github.com/spec/v1
+oid sha256:a54cca7dc6e626571d8161b3a432fd6a24cb3eb38bfa06b6270e653bb4cc4e96
+size 1797320